github.com/mnlphlp/aoc22@v0.0.0-20230330151331-c1dc4bff1b9b/day11/input.txt (about)

     1  Monkey 0:
     2    Starting items: 72, 64, 51, 57, 93, 97, 68
     3    Operation: new = old * 19
     4    Test: divisible by 17
     5      If true: throw to monkey 4
     6      If false: throw to monkey 7
     7  
     8  Monkey 1:
     9    Starting items: 62
    10    Operation: new = old * 11
    11    Test: divisible by 3
    12      If true: throw to monkey 3
    13      If false: throw to monkey 2
    14  
    15  Monkey 2:
    16    Starting items: 57, 94, 69, 79, 72
    17    Operation: new = old + 6
    18    Test: divisible by 19
    19      If true: throw to monkey 0
    20      If false: throw to monkey 4
    21  
    22  Monkey 3:
    23    Starting items: 80, 64, 92, 93, 64, 56
    24    Operation: new = old + 5
    25    Test: divisible by 7
    26      If true: throw to monkey 2
    27      If false: throw to monkey 0
    28  
    29  Monkey 4:
    30    Starting items: 70, 88, 95, 99, 78, 72, 65, 94
    31    Operation: new = old + 7
    32    Test: divisible by 2
    33      If true: throw to monkey 7
    34      If false: throw to monkey 5
    35  
    36  Monkey 5:
    37    Starting items: 57, 95, 81, 61
    38    Operation: new = old * old
    39    Test: divisible by 5
    40      If true: throw to monkey 1
    41      If false: throw to monkey 6
    42  
    43  Monkey 6:
    44    Starting items: 79, 99
    45    Operation: new = old + 2
    46    Test: divisible by 11
    47      If true: throw to monkey 3
    48      If false: throw to monkey 1
    49  
    50  Monkey 7:
    51    Starting items: 68, 98, 62
    52    Operation: new = old + 3
    53    Test: divisible by 13
    54      If true: throw to monkey 5
    55      If false: throw to monkey 6