We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Caesar Cipher
- Discussions
Caesar Cipher
Caesar Cipher
Sort by
recency
|
231 Discussions
|
Please Login in order to post a comment
in JS:
def caesarCipher(s, k): alp ="abcdefghijklmnopqrstuvwxyz" if k>2: if k>26: k= k%26 ro = alp[k:]+alp[:k] j= list(s) lt = []
Here is my Python3 approach