In this challenge, you need to decode a binary string (consisting of 0s and 1s) into its original text. To do this, you must convert the binary codes to their corresponding characters or words based on the provided table.
Key Points:
The table below shows each English alphabet letter with its unique binary code:
Letter | Binary Code | Letter | Binary Code | Letter | Binary Code |
---|---|---|---|---|---|
A | 1101 | J | 010000 | S | 01101 |
B | 10110 | K | 10001 | T | 0101 |
C | 0001 | L | 0111 | U | 10111 |
D | 0110 | M | 11000 | V | 000001 |
E | 111 | N | 1001 | W | 10101 |
F | 00101 | O | 0011 | X | 001001 |
G | 01001 | P | 11101 | Y | 0100001 |
H | 00001 | Q | 11001 | Z | 11100 |
I | 1010 | R | 10000 | SPACE | 00000 |
The program below helps you decode binary sequences based on the encoding table above:
Decoded Result:
Result will appear here...
This program uses a decoding algorithm that works as follows: