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

Jmnote (토론 | 기여)님의 2023년 11월 26일 (일) 12:50 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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;
}