CodeHS 8.3.8: Create Your Own Encoding , the goal is to develop a custom binary system to represent the English alphabet and a space character. To pass the autograder, you must satisfy specific technical requirements while being efficient with your bit usage. 🛠️ Key Requirements To successfully complete the exercise, your encoding must: Represent A-Z : Every capital letter must have a unique binary code. Include a Space : You must assign a code for the "space" character. Minimize Bits
Review the Specifics: Make sure to check the problem statement for any specific requirements or restrictions.
For a full alphabet, typing the dictionary manually is tedious. You can use two strings of the alphabet and the function if you want to be extra fancy!
Identify the character: Is it a letter, a number, or a space?