Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aalu1418/advent-of-code
Advent of Code! Learning and practicing languages through brain teasers.
https://github.com/aalu1418/advent-of-code
advent-of-code go rust
Last synced: 16 days ago
JSON representation
Advent of Code! Learning and practicing languages through brain teasers.
- Host: GitHub
- URL: https://github.com/aalu1418/advent-of-code
- Owner: aalu1418
- Created: 2021-07-03T20:56:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-22T22:26:55.000Z (almost 2 years ago)
- Last Synced: 2024-06-20T21:11:57.059Z (5 months ago)
- Topics: advent-of-code, go, rust
- Language: Rust
- Homepage:
- Size: 300 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
Practicing coding skills!
## 2015 - Go
[Advent of Code: 2015](https://adventofcode.com/2015) solutions in Go```bash
# Format
go run main.go ...# Example
go run main.go 12 "some random input"# run all
go test -v ./...
```## 2016 - Rust
[Advent of Code: 2016](https://adventofcode.com/2016) solutions in Rust```bash
# Format
cargo run -- ...# Example
cargo run -- 1 "some random input"# run all
cargo test
```## Misc - Python
Utility scripts:
* `python3 fetch.py `
* 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