Last active
December 27, 2015 12:39
-
-
Save Gerjo/7327444 to your computer and use it in GitHub Desktop.
Ezelsbruggetje
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We remove the operators, just keep the order of digits. | |
0123 1230 2013 | |
0321 0123 2301 | |
1302 0123 0123 | |
Instant memorize the repeated numbers, so you are left with | |
1230 2013 | |
0321 2301 | |
1302 | |
Notice that each number contains 4 unique digits. So really you need: | |
30 13 | |
21 01 | |
02 | |
If we assume each digit is a bit in a binary system, we reduce this to: | |
4 5 | |
3 1 | |
2 | |
Memorize the sequence: 23451 | |
Let's study the signs: | |
+-- - + | |
+ -++ - | |
- + --+ | |
Notice the skew symmetric property, easy to remember. | |
+ - + | |
+ + - | |
- + + | |
So we are left with: | |
-- | |
-+ | |
-- | |
Which is MNM in morse code. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment