본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 암호 해독

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