my solutions to advent of code
aoc advent-of-code

aa

aylac.top f624b321 36e03813

verified
Changed files
+18 -10
2015
-10
2015/16/sue.txt
··· 1 - children: 3 2 - cats: 7 3 - samoyeds: 2 4 - pomeranians: 3 5 - akitas: 0 6 - vizslas: 0 7 - goldfish: 5 8 - trees: 3 9 - cars: 2 10 - perfumes: 1
+7
2015/20/rust/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "rust" 7 + version = "0.1.0"
+6
2015/20/rust/Cargo.toml
··· 1 + [package] 2 + name = "rust" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+5
2015/20/rust/src/main.rs
··· 1 + fn main() { 2 + let input = include_str!("../../input.txt").trim(); 3 + 4 + println!("{}", &input); 5 + }