Encryptology Challengešš!!
Encryptology is the process of encoding a string to another form in such a way that it cannot be decoded by an unauthorized person. You are to encode a program in your language to encrypt the string in such a way that each character of the string is replaced with a character at a mentioned gap (say, move). If move is positive then the characters are replaced by characters ahead by the given move while for a negative move, the opposite occurs. In case the move is 0 then the same string is produced. The characters are wrapped, i.e, Z is followed by A and A is followed by Z considering the moves to be negative and positive respectively. E.g: ABZ can be encrypted as CDB if move = 2 ABZ can be encrypted as YZX if move = -2 Best of Luck!! And Happy Coding!