Hello, I've been assigned an encoding/decoding project and I have not the slightest clue how I should start; I have a piece of code written, but i'm not sure if i'm working in the right direction. Can someone please help? I must take a user string input, turn it into capital letters, remove punctuation and whitespace, then place it into a six by six grid without having any letters repeat. If the grid does not fill all the way through, the remaining places should be used up by #'s 0-9 and any unused letter. Below is an example and what I have so far and and example grid/user input, which is not much :(
Example:
Phrase- "The Quick Brown Fox Jumps over the Lazy Dog"
grid-
T H E Q U I
C K B R O W
N F X J M P
S V L A Z Y
D G 0 1 2 3
4 5 6 7 8 9
You dont have to make a grid to display a sentence on the screen...unless you want it to display like that. And to make the letters capital you can use the "touper" command.