https://github.com/oioki/aoc2023
Advent of C (2023)
https://github.com/oioki/aoc2023
Last synced: about 1 year ago
JSON representation
Advent of C (2023)
- Host: GitHub
- URL: https://github.com/oioki/aoc2023
- Owner: oioki
- Created: 2023-12-01T16:11:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T16:59:30.000Z (over 2 years ago)
- Last Synced: 2025-02-11T13:58:27.520Z (over 1 year ago)
- Language: C
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎄 Advent of C (2023)
https://adventofcode.com/2023
Usage:
```
$ cd 01
$ make
cc 01.c -Wall -Wextra -o solution
./solution example1.txt
Answer: 142
./solution example2.txt 2
Answer: 281
./solution input.txt 1
Answer: 55816
./solution input.txt 2
Answer: 54980
$ make check
```