728x90
▶ 문제
▶ 문제 풀이
function solution(s, n) {
var answer = '';
for(let i = 0; i < s.length; i++){
let c = s.charAt(i);
if(c == ' ') answer += c;
else{
let newChar = String.fromCharCode((c).charCodeAt() + n);
if(c >= 'a' && c <= 'z') answer += (newChar <= 'z') ? newChar : String.fromCharCode(newChar.charCodeAt() - 26);
if(c >= 'A' && c <= 'Z') answer += (newChar <= 'Z') ? newChar : String.fromCharCode(newChar.charCodeAt() - 26);
}
}
return answer;
}
- javascript 아스키코드 사용시
--> 문자를 숫자형으로 : 문자.charCodeAt();
--> 숫자를 문자형으로 : String.fromCharCode(숫자);
728x90
'Algorithm > PROGRAMMERS[JavaScript]' 카테고리의 다른 글
Lv1. 문자열을 정수로 바꾸기 (0) | 2022.06.06 |
---|---|
Lv1. 약수의 합 (0) | 2022.06.06 |
Lv1. 이상한 문자 만들기 (0) | 2022.06.06 |
Lv1. 자릿수 더하기 (0) | 2022.06.06 |
Lv1. 자연수 뒤집어 배열로 만들기 (0) | 2022.06.06 |