Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ben-wormald/advent-of-code-2019
solutions to Advent of Code 2019 in C
https://github.com/ben-wormald/advent-of-code-2019
advent-of-code advent-of-code-2019 c
Last synced: 5 days ago
JSON representation
solutions to Advent of Code 2019 in C
- Host: GitHub
- URL: https://github.com/ben-wormald/advent-of-code-2019
- Owner: Ben-Wormald
- Created: 2022-02-17T16:46:10.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T15:24:50.000Z (almost 3 years ago)
- Last Synced: 2024-11-06T00:45:43.232Z (about 2 months ago)
- Topics: advent-of-code, advent-of-code-2019, c
- Language: C
- Homepage: https://adventofcode.com/2019
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```sh
DAY=01
cc ./src/main.c ./src/util/*.c ./src/solutions/day_$DAY.c -o solve
./solve test
./solve $DAY
```