|
| 1 | +Monkey 0: |
| 2 | + Starting items: 54, 89, 94 |
| 3 | + Operation: new = old * 7 |
| 4 | + Test: divisible by 17 |
| 5 | + If true: throw to monkey 5 |
| 6 | + If false: throw to monkey 3 |
| 7 | + |
| 8 | +Monkey 1: |
| 9 | + Starting items: 66, 71 |
| 10 | + Operation: new = old + 4 |
| 11 | + Test: divisible by 3 |
| 12 | + If true: throw to monkey 0 |
| 13 | + If false: throw to monkey 3 |
| 14 | + |
| 15 | +Monkey 2: |
| 16 | + Starting items: 76, 55, 80, 55, 55, 96, 78 |
| 17 | + Operation: new = old + 2 |
| 18 | + Test: divisible by 5 |
| 19 | + If true: throw to monkey 7 |
| 20 | + If false: throw to monkey 4 |
| 21 | + |
| 22 | +Monkey 3: |
| 23 | + Starting items: 93, 69, 76, 66, 89, 54, 59, 94 |
| 24 | + Operation: new = old + 7 |
| 25 | + Test: divisible by 7 |
| 26 | + If true: throw to monkey 5 |
| 27 | + If false: throw to monkey 2 |
| 28 | + |
| 29 | +Monkey 4: |
| 30 | + Starting items: 80, 54, 58, 75, 99 |
| 31 | + Operation: new = old * 17 |
| 32 | + Test: divisible by 11 |
| 33 | + If true: throw to monkey 1 |
| 34 | + If false: throw to monkey 6 |
| 35 | + |
| 36 | +Monkey 5: |
| 37 | + Starting items: 69, 70, 85, 83 |
| 38 | + Operation: new = old + 8 |
| 39 | + Test: divisible by 19 |
| 40 | + If true: throw to monkey 2 |
| 41 | + If false: throw to monkey 7 |
| 42 | + |
| 43 | +Monkey 6: |
| 44 | + Starting items: 89 |
| 45 | + Operation: new = old + 6 |
| 46 | + Test: divisible by 2 |
| 47 | + If true: throw to monkey 0 |
| 48 | + If false: throw to monkey 1 |
| 49 | + |
| 50 | +Monkey 7: |
| 51 | + Starting items: 62, 80, 58, 57, 93, 56 |
| 52 | + Operation: new = old * old |
| 53 | + Test: divisible by 13 |
| 54 | + If true: throw to monkey 6 |
| 55 | + If false: throw to monkey 4 |
0 commit comments