Visualizing A Meteor
It’s gonna crash into you! Watch- *static*
- Refer to the original manual for the instructions.
Assuming A, B, C are all numbers to check on the module, and # represents any number to ignore when checking, first examine the group ABC in any of the following configurations:
A | B | C | ||||||||||
A | # | B | # | C | ||||||||
A | # | # | B | # | # | C | ||||||
A | # | # | # | B | # | # | # | C | ||||
A | # | # | # | # | B | # | # | # | # | C | ||
A | # | # | # | # | # | B | # | # | # | # | # | C |
⋮ |
Now look if the combination for A, B, C in the next table is present in the sequence in the order, CBA or ABC.
000 | 111 | 222 | 333 | 444 | 555 | 666 | 777 | 888 | 999 | |||||||||
012 | 123 | 234 | 345 | 456 | 567 | 678 | 789 | |||||||||||
024 | 135 | 246 | 357 | 468 | 579 | |||||||||||||
036 | 147 | 258 | 369 | |||||||||||||||
048 | 159 |
If the combination of numbers is present when examining any of the mentioned configurations, submit the result at the end of the sequence. I.E. If your sequence is 1##5##9, you submit the 9 in this case. If the sequence is 8#####5#####2, you submit the 2 in this case.