Post

시저 암호

https://school.programmers.co.kr/learn/courses/30/lessons/12926

📔 문제 설명

어떤 문장의 각 알파벳을 일정한 거리만큼 밀어서 다른 알파벳으로 바꾸는 암호화 방식을 시저 암호라고 합니다. 예를 들어 “AB”는 1만큼 밀면 “BC”가 되고, 3만큼 밀면 “DE”가 됩니다. “z”는 1만큼 밀면 “a”가 됩니다. 문자열 s와 거리 n을 입력받아 s를 n만큼 민 암호문을 만드는 함수, solution을 완성해 보세요.

💡 입출력 예

snresult
“AB”1“BC”
“z”1“a”
“a B z”4“e F d”

💻내가 작성한 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
function solution(s, n) {
  let answer = "";

  // 대문자: 65 ~ 90
  // 소문자: 97 ~ 122
  for (const alp of s) {
    const charCode = alp.charCodeAt();
    const charCodeAddn = charCode + n;
    const isUpperCase = alp.toUpperCase() === alp;

    if (charCode === 32) {
      answer += " ";
      continue;
    }

    let newCharCode = 0;
    if (isUpperCase) {
      newCharCode = charCodeAddn > 90 ? charCodeAddn - 26 : charCodeAddn;
    } else {
      newCharCode = charCodeAddn > 122 ? charCodeAddn - 26 : charCodeAddn;
    }
    answer += String.fromCharCode(newCharCode);
  }
  return answer;
}

💻내가 작성한 코드2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function solution(s, n) {
  let answer = "";
  const upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  const lowerCase = "abcdefghijklmnopqrstuvwxyz";

  for (const alp of s) {
    if (alp === " ") {
      answer += " ";
      continue;
    }

    const alpType = alp.toUpperCase() === alp ? upperCase : lowerCase;
    const index = alpType.indexOf(alp) + n;
    const computedIndex = index > 25 ? index - 26 : index;
    answer += alpType[computedIndex];
  }
  return answer;
}
This post is licensed under CC BY 4.0 by the author.