https://github.com/basile-henry/aoc2023
https://github.com/basile-henry/aoc2023
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/basile-henry/aoc2023
- Owner: basile-henry
- License: mit
- Created: 2023-12-01T06:07:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-07T22:26:27.000Z (over 1 year ago)
- Last Synced: 2024-12-25T08:44:02.285Z (7 months ago)
- Language: C
- Size: 250 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023
This is an attempt to do AoC in C without libc.
Note: This *ONLY* works for Linux x86-64 (targeting `skylake` at the moment)!
# Build and run
Requires a C compiler (I've tried with both GCC and Clang), a `nix-shell` is
provided for convenience.To build and run all the days so far:
```sh
make run-all
```To build a single day:
```sh
make day
```So for day 1
```sh
make day01
```# License
[MIT - Copyright 2023 Basile Henry](./LICENSE)