
Encryption Program
Take a string from a user and print an encrypted version with the following rules: 1 letter words - transform them into the numeric value in Unicode 2 letter words - transform in a coordinate pair with the numeric value of each coordinate as the position in the alphabet 3 letter words - reverse the order of the letters 4 letter words and larger - change the letter into a letter one value bigger based on Unicode value Finally, change any spaces to h's and any h's to spaces. Good luck!
Input: Str.
Output: Str.
Example:
encrypt("I hello my passwords are good") == 73hifmmph(13,h25)hqbttxpsetherah ppe encrypt("I like pickles") == 73hmjlfhqjdlmft
How it’s used: Encryption is used to send secret messages and keep files secure!
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.