Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.5 KB

decoding.md

File metadata and controls

49 lines (33 loc) · 1.5 KB

암호 해독

📌 문제 설명

군 전략가 머쓱이는 전쟁 중 적군이 다음과 같은 암호 체계를 사용한다는 것을 알아냈습니다.

  • 암호화된 문자열 cipher를 주고받습니다.
  • 그 문자열에서 code의 배수 번째 글자만 진짜 암호입니다. 문자열 cipher와 정수 code가 매개변수로 주어질 때 해독된 암호 문자열을 return하도록 solution 함수를 완성해주세요.

제한 조건

  • 1 ≤ cipher의 길이 ≤ 1,000
  • 1 ≤ code ≤ cipher의 길이
  • cipher는 소문자와 공백으로만 구성되어 있습니다.
  • 공백도 하나의 문자로 취급합니다.

입출력 예

cipher code result
"dfjardstddetckdaccccdegk" 4 "attack"
"pfqallllabwaoclk" 2 "fallback"

🧐 접근

반복문 사용

class Solution {
    public String solution(String cipher, int code) {
        StringBuilder answer = new StringBuilder();
        for(int i = code - 1; i < cipher.length(); i += code) {
            answer.append(cipher.charAt(i));
        }
        return answer.toString();
    }
}

💡 풀이

반복문에서 i값이 index의 역할을 수행할 것이므로 -1을 해서 cipher의 n번째 수 부터 반복문 수행. i값을 한번 수행할때마다 code만큼 더해주며 code의 배수 번째 글자만 charAt()메서드를 사용해 추출.

📘 그 외의 풀이

==================