aoc

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

a.rs (131B)


      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 }