๐Ÿ“ฆ BurntSushi / advent-of-code

Rust solutions to AoC 2018

โ˜… 477 stars โ‘‚ 27 forks ๐Ÿ‘ 477 watching โš–๏ธ The Unlicense
๐Ÿ“ฅ Clone https://github.com/BurntSushi/advent-of-code.git
HTTPS git clone https://github.com/BurntSushi/advent-of-code.git
SSH git clone git@github.com:BurntSushi/advent-of-code.git
CLI gh repo clone BurntSushi/advent-of-code
Michael Schubart Michael Schubart aoc03: simplify handling of regex mismatch 4439af3 4 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ aoc01
๐Ÿ“ aoc02
๐Ÿ“ aoc03
๐Ÿ“ aoc04
๐Ÿ“ aoc05
๐Ÿ“ aoc06
๐Ÿ“ aoc07
๐Ÿ“ aoc08
๐Ÿ“ aoc09
๐Ÿ“ aoc10
๐Ÿ“ aoc11
๐Ÿ“ aoc12
๐Ÿ“ aoc13
๐Ÿ“ aoc14
๐Ÿ“ aoc15
๐Ÿ“ aoc16
๐Ÿ“ aoc17
๐Ÿ“ aoc18
๐Ÿ“ aoc19
๐Ÿ“ aoc20
๐Ÿ“ aoc21
๐Ÿ“ aoc22
๐Ÿ“ aoc23
๐Ÿ“ aoc24
๐Ÿ“ aoc25
๐Ÿ“„ .gitignore
๐Ÿ“„ COPYING
๐Ÿ“„ LICENSE-MIT
๐Ÿ“„ README.md
๐Ÿ“„ setup-day
๐Ÿ“„ UNLICENSE
๐Ÿ“„ README.md

BurntSushi's 2018 Advent of Code solutions ==========================================

I chose to write this year's solutions in Rust. I don't have any particularly ambitious goals, but I am trying to write the solutions using idiomatic code. In particular, it should not be possible for any input to cause one of the solutions to panic.

I have not spent any time benchmarking the code.

To run a solution, cd into its directory and invoke the program with Cargo:

$ cd aoc01
$ cargo run --release < input/input.txt

If you have questions about the code, please open an issue and ask away! Beginner questions are very much welcome.