프로그래머스 120913 잘라서 배열로 저장하기

1 개요[ | ]

프로그래머스 120913 잘라서 배열로 저장하기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

vector<string> solution(string my_str, int n) {
    vector<string> answer;
    for(int i=0; i<my_str.length(); i+=n) {
        answer.emplace_back(my_str.substr(i, n));
    }
    return answer;
}