https://github.com/cdvel/advent-of-code-rs
Small programming puzzles in rustlang
https://github.com/cdvel/advent-of-code-rs
advent-of-code-2020 rust
Last synced: about 1 year ago
JSON representation
Small programming puzzles in rustlang
- Host: GitHub
- URL: https://github.com/cdvel/advent-of-code-rs
- Owner: cdvel
- Created: 2021-04-14T03:21:49.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T13:33:44.000Z (about 1 year ago)
- Last Synced: 2025-04-01T14:35:21.812Z (about 1 year ago)
- Topics: advent-of-code-2020, rust
- Language: Rust
- Homepage: https://adventofcode.com/2020/about
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code - Rust Edition
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as a speed contest, interview prep, company training, university coursework, practice problems, or to challenge each other. More details [here](https://adventofcode.com/2020/about)
## Calendars
### 2020
|Name |Solution |
|---------------------------------------------------------------------------|--------------------------|
|[Day 1: Report Repair](https://adventofcode.com/2020/day/1) |[✓](src/bin/2020_day1.rs) |
|[Day 2: Password Philosophy](https://adventofcode.com/2020/day/2) |[✓](src/bin/2020_day2.rs) |
|[Day 3: Toboggan Trajectory](https://adventofcode.com/2020/day/3) |[✓](src/bin/2020_day3.rs) |
|[Day 4: Passport Processing](https://adventofcode.com/2020/day/4) |[✓](src/bin/2020_day4.rs) |
|[Day 5: Binary Boarding](https://adventofcode.com/2020/day/5) |[✓](src/bin/2020_day5.rs) |
|[Day 6: Custom Customs](https://adventofcode.com/2020/day/6) |[◦](src/bin/2020_day6.rs) |
|[Day 7: Handy Haversacks](https://adventofcode.com/2020/day/7) |[✓](src/bin/2020_day7.rs) |
|[Day 8: Handheld Halting](https://adventofcode.com/2020/day/8) |[✓](src/bin/2020_day8.rs) |
|[Day 9: Encoding Error](https://adventofcode.com/2020/day/9) |[✓](src/bin/2020_day9.rs) |
|[Day 10: Adapter Array](https://adventofcode.com/2020/day/10) |[✓](src/bin/2020_day10.rs) |
|[Day 11: Seating System](https://adventofcode.com/2020/day/11) |[ ](src/bin/2020_day11.rs) |
|[Day 12: Rain Risk](https://adventofcode.com/2020/day/12) |[ ](src/bin/2020_day12.rs) |
|[Day 13: Shuttle Search](https://adventofcode.com/2020/day/13) |[ ](src/bin/2020_day13.rs) |
|[Day 14: Docking Data](https://adventofcode.com/2020/day/14) |[ ](src/bin/2020_day14.rs) |
|[Day 15: Rambunctious Recitation](https://adventofcode.com/2020/day/15) |[ ](src/bin/2020_day15.rs) |
|[Day 16: Ticket Translation](https://adventofcode.com/2020/day/16) |[ ](src/bin/2020_day16.rs) |
|[Day 17: Conway Cubes](https://adventofcode.com/2020/day/17) |[ ](src/bin/2020_day17.rs) |
|[Day 18: Operation Order](https://adventofcode.com/2020/day/18) |[ ](src/bin/2020_day18.rs) |
|[Day 19: Monster Messages](https://adventofcode.com/2020/day/19) |[ ](src/bin/2020_day19.rs) |
|[Day 20: Jurassic Jigsaw](https://adventofcode.com/2020/day/20) |[ ](src/bin/2020_day20.rs) |
|[Day 21: Allergen Assessment](https://adventofcode.com/2020/day/21) |[ ](src/bin/2020_day21.rs) |
|[Day 22: Crab Combat](https://adventofcode.com/2020/day/22) |[ ](src/bin/2020_day22.rs) |
|[Day 23: Crab Cups](https://adventofcode.com/2020/day/23) |[ ](src/bin/2020_day23.rs) |
|[Day 24: Lobby Layout](https://adventofcode.com/2020/day/24) |[ ](src/bin/2020_day24.rs) |
|[Day 25: Combo Breaker](https://adventofcode.com/2020/day/25) |[ ](src/bin/2020_day25.rs) |
## Run
e.g.,
```bash
cargo run --bin 2020_day1