https://github.com/reshane/aoc2015
https://github.com/reshane/aoc2015
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/reshane/aoc2015
- Owner: reshane
- Created: 2024-12-18T19:14:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-18T21:26:19.000Z (over 1 year ago)
- Last Synced: 2025-02-14T08:37:35.251Z (over 1 year ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2015
- https://adventofcode.com/2015
## Quick Start
Tests can be run from the command line with `cargo t` or `cargo test`
Provide the `--features long_tests` flag to enable long running tests
Running a given day can be done by creating an input file as follows:
```
curl -b Cookie="[COOKIE]" "https://adventofcode.com/2015/day/{DAY_NUMBER}/input > ./input/{DAY_NUMBER}.txt
```
and then running the preferred day with cargo:
```
cargo r [DAY_NUMBER]
```