https://github.com/flopp/aoc2017
My solutions for 'Advent of Code' 2017
https://github.com/flopp/aoc2017
Last synced: about 1 year ago
JSON representation
My solutions for 'Advent of Code' 2017
- Host: GitHub
- URL: https://github.com/flopp/aoc2017
- Owner: flopp
- License: mit
- Created: 2017-11-30T18:08:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T23:34:25.000Z (about 2 years ago)
- Last Synced: 2025-01-22T12:23:53.493Z (over 1 year ago)
- Language: C++
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flopp/aoc2017
My solutions for the awesome [Advent Of Code 2017](http://adventofcode.com/2017) - an advent calendar for programmers.
Running individual days:
```
# enter the desired directory (day/language):
cd 01/c++
# run part1 tests
make test1
# run part1 puzzle
make puzzle1
# run part2 tests
make test2
# run part2 puzzle
make puzzle2
```