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