728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
string solution(string my_string, int m, int c) {
string answer = "";
for(int i = 0; i<my_string.length(); ++i)
{
if(i%m+1 == c)
{
answer+=my_string[i];
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 문자 개수 세기 (0) | 2023.11.06 |
---|---|
[프로그래머스/C++] Lv.0 qr code (0) | 2023.11.05 |
[프로그래머스/C++] Lv.0 접두사인지 확인하기 (0) | 2023.11.03 |
[프로그래머스/C++] Lv.0 문자열의 앞의 n글자 (0) | 2023.11.03 |
[프로그래머스/C++] Lv.0 접미사인지 확인하기 (0) | 2023.11.03 |