Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhananjaylatkar/aoc2015
Solutions for Advent Of Code 2015
https://github.com/dhananjaylatkar/aoc2015
2015 advent-of-code advent-of-code-2015 advent-of-code-2015-rust aoc2015 rust
Last synced: 24 days ago
JSON representation
Solutions for Advent Of Code 2015
- Host: GitHub
- URL: https://github.com/dhananjaylatkar/aoc2015
- Owner: dhananjaylatkar
- License: mit
- Created: 2022-08-10T11:21:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-20T17:23:10.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T04:58:45.440Z (over 1 year ago)
- Topics: 2015, advent-of-code, advent-of-code-2015, advent-of-code-2015-rust, aoc2015, rust
- Language: Rust
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aoc2015
## Usage
### Build using cargo
```shell
➜ cargo build
```### Run
- Help
```shell
➜ ./target/debug/aoc2015 --help
aoc2015 0.1.0
Solutions for Advent of Code 2015 (https://adventofcode.com/2015)USAGE:
aoc2015 [OPTIONS]OPTIONS:
-d, --day AoC Day [0 to 25 inclusive]. 0 for all Days [default: 0]
-h, --help Print help information
-V, --version Print version information
```- Get solution for Day X
```shell
➜ ./target/debug/aoc2015 --day X
D0XP1: XXX
D0XP2: XXX
```### Changing input
Inputs are stored in `src/input/dayXX`. Replace it with your input.