Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndinata/aoc2023
aoc 2023 in rust 🎄
https://github.com/ndinata/aoc2023
advent-of-code rust
Last synced: 3 days ago
JSON representation
aoc 2023 in rust 🎄
- Host: GitHub
- URL: https://github.com/ndinata/aoc2023
- Owner: ndinata
- License: mit
- Created: 2023-12-02T07:49:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-10T02:10:56.000Z (about 1 year ago)
- Last Synced: 2023-12-10T03:20:45.157Z (about 1 year ago)
- Topics: advent-of-code, rust
- Language: Rust
- Homepage: https://adventofcode.com/2023
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent of code 2023
educational endeavour for me to:
- continue practising using Rust to solve problems, and
- more specifically skill up in writing text parserssome of the earlier days' answers are inspired by https://github.com/ChristopherBiscardi/advent-of-code,
from whom I'm grateful to have learned how to use [`nom`](https://github.com/rust-bakery/nom),
and also for the exposure to neat crates like [`rstest`](https://github.com/la10736/rstest).## how to run
```sh
$ git clone https://github.com/ndinata/aoc2023.git
$ cd aoc2023# example: running tests for day 2's solutions (for both part 1 and 2)
$ make test day=02# example: printing the solution for day 4 part 2
$ make run day=04 part=2
```## license
licensed under [MIT](./LICENSE).