Practicing coding skills!
Advent of Code: 2015 solutions in Go
# Format
go run main.go <day> <input 1> <input 2> ...
# Example
go run main.go 12 "some random input"
# run all
go test -v ./...
Advent of Code: 2016 solutions in Rust
# Format
cargo run -- <day> <input> ...
# Example
cargo run -- 1 "some random input"
# run all
cargo test
Utility scripts:
python3 fetch.py <folder-path> <year> <cookie>
- Find a valid cookie in the console after logging in to
advent-of-code
- Use script to pull all inputs for a year and write to
.txt
files
- Find a valid cookie in the console after logging in to