Remove live code & console.log (Backtracking, Bit-manipulation, Ciphers).

This commit is contained in:
Eric Lavault
2021-10-09 17:47:03 +02:00
parent 7f6a53ad4a
commit 5c4be7604d
8 changed files with 35 additions and 33 deletions

View File

@ -29,8 +29,7 @@ function rot13 (str) {
return response.join('')
}
// Caesars Cipher Example
const encryptedString = 'Uryyb Jbeyq'
const decryptedString = rot13(encryptedString)
export { rot13 }
console.log(decryptedString) // Hello World
// > rot13('Uryyb Jbeyq')
// 'Hello World'