프로그래머스 Lv.1 둘만의 암호
문제 설명
두 문자열
s
와skip
, 그리고 자연수index
가 주어질 때, 다음 규칙에 따라 문자열을 만들려 합니다. 암호의 규칙은 다음과 같습니다.
- 문자열 s의 각 알파벳을
index
만큼 뒤의 알파벳으로 바꿔줍니다.index
만큼의 뒤의 알파벳이z
를 넘어갈 경우 다시a
로 돌아갑니다.- skip
에 있는 알파벳은 제외하고 건너뜁니다.예를 들어
s
= “aukks”,skip
= “wbqd”,index
= 5일 때, a에서 5만큼 뒤에 있는 알파벳은 f지만 [b, c, d, e, f]에서 ‘b’와 ‘d’는skip
에 포함되므로 세지 않습니다. 따라서 ‘b’, ‘d’를 제외하고 ‘a’에서 5만큼 뒤에 있는 알파벳은 [c, e, f, g, h] 순서에 의해 ‘h’가 됩니다. 나머지 “ukks” 또한 위 규칙대로 바꾸면 “appy”가 되며 결과는 “happy”가 됩니다.두 문자열
s
와skip
, 그리고 자연수index
가 매개변수로 주어질 때 위 규칙대로s
를 변환한 결과를 return하도록 solution 함수를 완성해주세요.제한사항
- 5 ≤
s
의 길이 ≤ 50- 1 ≤
skip
의 길이 ≤ 10- s“와
skip
은 알파벳 소문자로만 이루어져 있습니다.
skip
에 포함되는 알파벳은s
에 포함되지 않습니다.- 1 ≤
index
≤ 20입출력 예
s skip index result “aukks” “wbqd” 5 “happy”
풀이 코드
function solution(s, skip, index) {
let result = '';
const inputNums = s.split('').map((x) => x.charCodeAt(0));
const skipList = skip.split('').map((x) => x.charCodeAt(0));
const convertValue = (value, idx) => {
let start = value;
let end = value + idx;
if (end > 122) end -= 26;
const count = skipList.filter(
(x) => (start < x && x <= start + idx) || (start > end && x <= end),
).length;
return count === 0 ? String.fromCharCode(end) : convertValue(end, count);
};
for (const inputValue of inputNums) {
result += convertValue(inputValue, index);
}
return result;
}
풀이 설명
- ASCII 코드를 이용한다.
- 첫 문자보다 인덱스만큼 뒤에 있는 문자를 먼저 센 후, 사이에 건너뛸 문자가 있다면 그 개수만큼 추가로 세어 준다.
function solution(s, skip, index) {
let result = '';
const inputNums = s.split('').map((x) => x.charCodeAt(0));
const skipList = skip.split('').map((x) => x.charCodeAt(0));
//...
}
s
와 skip
의 문자를 분리하여 ASCII 코드로 변환한 배열을 각각 inputNums
과 skipList
로 선언한다.
function solution(s, skip, index) {
//...
const convertValue = (value, idx) => {
let start = value;
let end = value + idx;
if (end > 122) end -= 26;
const count = skipList.filter(
(x) => (start < x && x <= start + idx) || (start > end && x <= end),
).length;
return count === 0 ? String.fromCharCode(end) : convertValue(end, count);
};
//...
}
convertValue
는 매개변수로 받은 문자를 index만큼 뒤의 알파벳으로 변환하는 함수이다.
-
start
는 변환하려는 문자의 ASCII값,end
는 skip을 고려하지 않은 index만큼 뒤의 ASCII값이다end
가 z에 해당하는 ASCII값인 122를 초과하면 a부터 시작하기 위해 26을 뺀다. -
count
는 start와 end 사이에 건너뛸 문자의 개수이다.건너뛸 문자가 사이에 존재하지 않는 경우,
end
값을 다시 문자로 변환하여 반환하고, 건너뛸 문자가 존재한다면 count가 0이 될 때까지 재귀로 반복한다.
function solution(s, skip, index) {
//...
for (const inputValue of inputNums) {
result += convertValue(inputValue, index);
}
return result;
}
inputValue
를 순회하면서 convertValue
값을 결괏값에 모두 더해 리턴한다.
References
프로그래머스 연습