aoc

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

b.rs (142B)


      1 mod common;
      2 use common::*;
      3 
      4 fn main() {
      5     let mut monkeys = read_input();
      6     println!("{}", res_after_n_rounds(&mut monkeys, 10000, 1));
      7 }