I thank yvonne-liu for the idea and for the example tests :)
Encrypt this!
You want to create secret messages which can be deciphered by the Decipher this! kata. Here are the conditions:
- Your message is a string containing space separated words.
- You need to encrypt each word in the message using the following rules:
- a) The first letter needs to be converted to its ASCII code.
- b) The second letter needs to be switched with the last letter
- Keepin' it simple: There are no special characters in input.
encrypt_this("Hello") == "72olle"
encrypt_this("good") == "103doo"
encrypt_this("hello world") == "104olle 119drlo"