https://github.com/magellol/adventofcode_2023
Ho ho ho
https://github.com/magellol/adventofcode_2023
Last synced: 11 months ago
JSON representation
Ho ho ho
- Host: GitHub
- URL: https://github.com/magellol/adventofcode_2023
- Owner: Magellol
- Archived: true
- Created: 2023-12-02T18:26:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-07T13:59:13.000Z (about 2 years ago)
- Last Synced: 2025-02-15T00:29:46.295Z (11 months ago)
- Language: Rust
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of code 2023
## Install
This project uses `nix` flake to set up dependencies. If you're on Apple silicon, you can run the following to install the toolchain. There should be a similar one for other architectures.
```console
$ rustup toolchain install stable-aarch64-apple-darwin
```
## Run solutions
Run the following where `{day}` is `day1`, `day2`, ...
```console
$ cargo run --bin {day}
```
Tests are also available as I've used them to build each of the solutions
```console
$ cargo test --package {day}
```