aoc

My solutions for the Advent of Code
git clone https://git.tronto.net/aoc
Download | Log | Files | Refs | README

b.rs (158B)


      1 mod common;
      2 use common::*;
      3 
      4 fn main() {
      5     let mut a = read_from_stdin(811589153);
      6     for _ in 0..10 { mix(&mut a); }
      7     println!("{}", groove_sum(&a));
      8 }