diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-07 09:51:31 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-07 09:51:31 +0200 |
| commit | 2f0e522317972711b5e03ad25b38bf03af17e8d5 (patch) | |
| tree | 98c0ace3df13030722edac45e99d86e0117d6d31 /2022/20/a.rs | |
| parent | 58800a74af2c9f3578d3e62b3226aaf7c73aef87 (diff) | |
| download | aoc-2f0e522317972711b5e03ad25b38bf03af17e8d5.tar.gz aoc-2f0e522317972711b5e03ad25b38bf03af17e8d5.zip | |
Day 20 2022
Diffstat (limited to '2022/20/a.rs')
| -rw-r--r-- | 2022/20/a.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2022/20/a.rs b/2022/20/a.rs new file mode 100644 index 0000000..0b80099 --- /dev/null +++ b/2022/20/a.rs | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | mod common; | ||
| 2 | use common::*; | ||
| 3 | |||
| 4 | fn main() { | ||
| 5 | let mut a = read_from_stdin(1); | ||
| 6 | mix(&mut a); | ||
| 7 | println!("{}", groove_sum(&a)); | ||
| 8 | } | ||
