diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2022-12-11 20:38:48 +0100 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2022-12-11 20:38:48 +0100 |
| commit | 6a04e03f69b524d8ac053d34ffc116102a520d5f (patch) | |
| tree | 2a31fd11982d728e2575174f5e7f990db4667829 /inputs | |
| parent | 2e0ca051b9d927c4bc26731c6bb37ec7b05f4b31 (diff) | |
day11
Diffstat (limited to 'inputs')
| -rw-r--r-- | inputs/day11 | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/inputs/day11 b/inputs/day11 new file mode 100644 index 0000000..20b4b0a --- /dev/null +++ b/inputs/day11 @@ -0,0 +1,55 @@ +Monkey 0: + Starting items: 98, 89, 52 + Operation: new = old * 2 + Test: divisible by 5 + If true: throw to monkey 6 + If false: throw to monkey 1 + +Monkey 1: + Starting items: 57, 95, 80, 92, 57, 78 + Operation: new = old * 13 + Test: divisible by 2 + If true: throw to monkey 2 + If false: throw to monkey 6 + +Monkey 2: + Starting items: 82, 74, 97, 75, 51, 92, 83 + Operation: new = old + 5 + Test: divisible by 19 + If true: throw to monkey 7 + If false: throw to monkey 5 + +Monkey 3: + Starting items: 97, 88, 51, 68, 76 + Operation: new = old + 6 + Test: divisible by 7 + If true: throw to monkey 0 + If false: throw to monkey 4 + +Monkey 4: + Starting items: 63 + Operation: new = old + 1 + Test: divisible by 17 + If true: throw to monkey 0 + If false: throw to monkey 1 + +Monkey 5: + Starting items: 94, 91, 51, 63 + Operation: new = old + 4 + Test: divisible by 13 + If true: throw to monkey 4 + If false: throw to monkey 3 + +Monkey 6: + Starting items: 61, 54, 94, 71, 74, 68, 98, 83 + Operation: new = old + 2 + Test: divisible by 3 + If true: throw to monkey 2 + If false: throw to monkey 7 + +Monkey 7: + Starting items: 90, 56 + Operation: new = old * old + Test: divisible by 11 + If true: throw to monkey 3 + If false: throw to monkey 5 |
