프로그래머스 Lv1. 시저 암호
문제
접근
- 아스키코드
- 문자열 → 리스트 → 문자열 문자열
코드
📌 python
def solution(s, n):
def code_s(x) :
if ord(x) == 32 :
return " "
if 65 <= ord(x) <= 90 :
if ord(x)+n > 90 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
if 97 <= ord(x) <= 122 :
if ord(x)+n > 122 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
return "".join([code_s(x) for x in s])
📌 js
function solution(s, n) {
function changeS(x){
if (x.charCodeAt() == 32){
return String.fromCharCode(x.charCodeAt())
};
if (x.charCodeAt() >= 65 && x.charCodeAt() <= 90){
if (x.charCodeAt()+n > 90){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
if (x.charCodeAt() >= 97 && x.charCodeAt() <= 122){
if (x.charCodeAt()+n > 122){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
}
return s.split("").map(x => changeS(x)).join("")
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 시저 암호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ryong9rrr/프로그래머스-Lv1.-시저-암호
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- 아스키코드
- 문자열 → 리스트 → 문자열 문자열
코드
📌 python
def solution(s, n):
def code_s(x) :
if ord(x) == 32 :
return " "
if 65 <= ord(x) <= 90 :
if ord(x)+n > 90 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
if 97 <= ord(x) <= 122 :
if ord(x)+n > 122 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
return "".join([code_s(x) for x in s])
📌 js
function solution(s, n) {
function changeS(x){
if (x.charCodeAt() == 32){
return String.fromCharCode(x.charCodeAt())
};
if (x.charCodeAt() >= 65 && x.charCodeAt() <= 90){
if (x.charCodeAt()+n > 90){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
if (x.charCodeAt() >= 97 && x.charCodeAt() <= 122){
if (x.charCodeAt()+n > 122){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
}
return s.split("").map(x => changeS(x)).join("")
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 시저 암호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ryong9rrr/프로그래머스-Lv1.-시저-암호
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
def solution(s, n):
def code_s(x) :
if ord(x) == 32 :
return " "
if 65 <= ord(x) <= 90 :
if ord(x)+n > 90 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
if 97 <= ord(x) <= 122 :
if ord(x)+n > 122 :
return chr(ord(x)+n-26)
return chr(ord(x)+n)
return "".join([code_s(x) for x in s])
function solution(s, n) {
function changeS(x){
if (x.charCodeAt() == 32){
return String.fromCharCode(x.charCodeAt())
};
if (x.charCodeAt() >= 65 && x.charCodeAt() <= 90){
if (x.charCodeAt()+n > 90){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
if (x.charCodeAt() >= 97 && x.charCodeAt() <= 122){
if (x.charCodeAt()+n > 122){
return String.fromCharCode(x.charCodeAt()+n-26)
}
return String.fromCharCode(x.charCodeAt()+n)
};
}
return s.split("").map(x => changeS(x)).join("")
}
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 시저 암호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ryong9rrr/프로그래머스-Lv1.-시저-암호저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)