Back
Close

Make it readable !

Statement

 Goal

You need to decode the message m received replacing letters by its opposite in alphabet.
For example : a -> z, b -> y, ...
Note :
- Messages are lowercase
- Spaces, numbers and special characters should not be changed
Input
Ligne 1 : A message m to decode
Output
Ligne 1 : Decoded message
Constraints
m is lowercase but can contains special characters or numbers that should not be modified
Example
Input
svool
Output
hello

Game modes
Fastest, Shortest, Reverse

Test cases
Test 1 Test
Input
svool
Output
hello

Validator 1 Validator
Input
gvhg
Output
test

Test 2 Test
Input
z hrnkov hvmgvmxv.
Output
a simple sentence.

Validator 2 Validator
Input
gsv urihg hvmgvmxv!
Output
the first sentence!

Test 3 Test
Input
yibzm rh rm gsv prgxsvm
Output
bryan is in the kitchen

Validator 3 Validator
Input
dszg z dlmwviufo vcvixrhv
Output
what a wonderful exercise

Test 4 Test
Input
w0 b0f fmw3i51zmw zmb 0u 1sr5 ?
Output
d0 y0u und3r51and any 0f 1hi5 ?

Validator 4 Validator
Input
2 sziw 4 f !
Output
2 hard 4 u !

Solution language

Solution

Stub generator input