Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
MIT License
363
stars
618
forks
source link
Caesar's Cipher(shifting cipher) Encoder and Decoder #1049
Hi,
I want to contribute to this issue , where user have 2 options either to encode the given string to the given key or Decode
the string.
language: C++
For example:
Encoder: given string: abcd key=3
output: defg
Decoder:given string: defg key=-3
output:abcd
Hi, I want to contribute to this issue , where user have 2 options either to encode the given string to the given key or Decode the string. language: C++ For example: Encoder: given string: abcd key=3 output: defg Decoder:given string: defg key=-3 output:abcd