꾸준한 개발자

계속적인 성장을 추구하는 개발자입니다. 꾸준함을 추구합니다.

계속 쓰는 개발 노트

카테고리 없음

[프로그래머스] 시저 암호

gold_dragon 2021. 2. 7. 21:38
function solution(s, n) {
  const sArr = s.split('');
  const lower = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
  const upper = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
  for (let i = 0; i < sArr.length; i++) {
    if (lower.find(e => e === sArr[i])) {
      const index = lower.findIndex(e => e === sArr[i]);
      sArr[i] = lower[(index + n) % 26];
    } else if (upper.find(e => e === sArr[i])) {
      const index = upper.findIndex(e => e === sArr[i]);
      sArr[i] = upper[(index + n) % 26];
    }
  }
  return sArr.join('');
}