Problem 723. QWERTY Shift Encoder
Encode a string using the QWERTY shift code.
This code is where you touch type but are offset by one character to the right.
Only letters are encoded as the top row shifting does not occur.
(eg) "A" becomes "S" and "a" becomes "s"
"PpLlMm" becomes "{[:;<,"
An encoded message will never have any "QqAaZz" letters.
Illegal characters in the original message are "{{:;<,".
Encode "A-Za-z". All other characters are normal except for the Illegal characters.
Input:
str= "You miss"
Output:
encoded_str= "Upi ,odd"
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers232
Suggested Problems
-
Find relatively common elements in matrix rows
2090 Solvers
-
Sum of first n terms of a harmonic progression
444 Solvers
-
Create a matrix X, where each column is a shifted copy of the vector v
205 Solvers
-
787 Solvers
-
572 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!