Login to class.mimir.io. Open Codebreaker assignment. Instructions are given below for reference.
In this activity, you will complete a simple program to decode secret messages!
There are many complex and interesting ciphers for sending coded messages, but here is the simple decoding process for this activity:
You are given some starter code that process encoded messages as input. Now, it's up to you to decipher them!
[HINT: Each message is a single word. Submit the code to see the test cases. Java String class cannot be indexed like an array.
Use charAt(int index) and toUpperCase() methods if you want to use the number as an index to the ALPHABET String. ]