On the Subject of RGB Encryption
Why did we call an epileptic person to defuse a bomb...
A morse code string will play, containing 5 invalid letters each.
The dots and dashes will pulse with a different color each, with them being (R)ed, (G)reen, or (B)lue.
Step 1: Determining two 5 character strings
For each character, use the table below to determine each letter. Start at the top-left corner.
- For letters:
- Go right for dashes, go down for dots.
- For colors:
- Go right if the color matches, go down if it doesn’t.
R | B | G | R | G | F |
B | G | R | B | E | |
R | B | G | D | ||
G | R | C | |||
B | B | ||||
A |
Step 2: Determining 10 character string
Obtain your 2 comparing numbers:
- A = Number of dashes
- B = Number of blue flashes
- If A > B, merge your morse character string with your color character string.
- Otherwise, if A = B, ignore your color character string and use your morse character string twice.
- Otherwise, if A < B, merge your color character string with your morse character string.