프로그래머스 120892 암호 해독

1 개요[ | ]

프로그래머스 120892 암호 해독

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(string cipher, int code) {
    string answer = "";
    for(int i=code-1; i<cipher.length(); i+=code) {
        answer += cipher[i];
    }
    return answer;
}