Advent of Code 2020 - My solutions using C++
This repository has been archived on 2025-09-06. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
2021-05-07 15:53:44 +02:00
.vscode improved launcher 2020-12-07 11:19:07 +01:00
app fixed weird auto variable issue 2021-05-05 21:47:29 +02:00
lib Submerged my program in a bucket full of colors. 2020-12-07 15:27:47 +01:00
.clang-format Preperations 2020-11-30 20:16:19 +01:00
.gitignore cleaned up the .vscode folder 2020-12-06 22:22:10 +01:00
CMakeLists.txt Made my solutions prettier, updated readme 2020-12-01 21:45:03 +01:00
LICENSE Preperations 2020-11-30 20:16:19 +01:00
README.md Updated star count 2021-05-07 15:53:44 +02:00

Advent of Code 2020

About Language Days completed Stars

Advent of Code 2020 - My solutions using C++

Interrested in my solutions from last year? You can find them here!

Compilation

  • Create a build folder in the root of the project.
  • cd into the build folder.
  • Run cmake .. with your favorite arguments or use a program like cmake-gui on Windows or ccmake on Linux.
  • To build the program, run cmake --build <path_to_build_folder>. (e.g. from the root of the project run cmake --build build)
  • The resulting binary will be in the bin folder.
  • WSL specific problem: To fix clock skewed warning, execute sudo hwclock -s, that should fix it for a while.

Other awesome solutions!