96 - Rot13
Q.
Description:
ROT13 is a simple letter substitution cipher that replaces a letter with the letter 13 letters after it in the alphabet. ROT13 is an example of the Caesar cipher.
Create a function that takes a string and returns the string ciphered with Rot13. If there are numbers or special characters included in the string, they should be returned as they are. Only letters from the latin/english alphabet should be shifted, like in the original Rot13 "implementation".
A)
function rot13(message){
//your code here
let res = message.split('')
return res.map(el => {
if (el.charCodeAt() < 65) return el.charCodeAt()
if (el.charCodeAt() - 13 < 65) return el.charCodeAt()+13
if (el.charCodeAt() === el.toUpperCase().charCodeAt()) return el.charCodeAt() -13
if (el.charCodeAt() - 13 < 97) return el.charCodeAt()+13
return el.charCodeAt()-13
}).map(el => String.fromCharCode(el)).join('')
}
Author And Source
이 문제에 관하여(96 - Rot13), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-96-Rot13
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function rot13(message){
//your code here
let res = message.split('')
return res.map(el => {
if (el.charCodeAt() < 65) return el.charCodeAt()
if (el.charCodeAt() - 13 < 65) return el.charCodeAt()+13
if (el.charCodeAt() === el.toUpperCase().charCodeAt()) return el.charCodeAt() -13
if (el.charCodeAt() - 13 < 97) return el.charCodeAt()+13
return el.charCodeAt()-13
}).map(el => String.fromCharCode(el)).join('')
}
Author And Source
이 문제에 관하여(96 - Rot13), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-96-Rot13저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)