Algo-Phantoms / Algo-Tree

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

Open vegeta09 opened 3 years ago

vegeta09 commented 3 years ago

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

MayureeS commented 3 years ago

@rudrakshi99 @plazzy99 Kindly assign this issue to me. I would like to write the code for this problem in 'Java'.