https://github.com/flopp/aoc2016
My solutions for 'Advent of Code' 2016
https://github.com/flopp/aoc2016
Last synced: about 1 year ago
JSON representation
My solutions for 'Advent of Code' 2016
- Host: GitHub
- URL: https://github.com/flopp/aoc2016
- Owner: flopp
- License: mit
- Created: 2016-12-02T12:36:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-24T14:13:30.000Z (over 9 years ago)
- Last Synced: 2025-01-22T12:23:45.310Z (over 1 year ago)
- Language: C++
- Size: 243 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flopp/aoc2016
My solutions for the awesome [Advent Of Code 2016](http://adventofcode.com/2016) - an advent calendar for programmers.
All of my solutions are written in C++, additionally I gave other languages (AWK, Tcl) a try on some days.
The solution of each day typically consists of two C++ files `main1.cpp` and `main2.cpp` which contain the code for part 1 and 2, as well as a `Makefile` to compile and run the solutions.
```sh
cd 06/c++
# compile and run test cases and the main puzzle of part 1
make test1
make puzzle1
# compile and run test cases and the main puzzle of part 2
make test2
make puzzle2
```