728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<int> solution(vector<string> intStrs, int k, int s, int l) {
vector<int> answer;
//string s;
for(int i = 0; i<intStrs.size(); ++i)
{
string temp;
for(int j = s; j<s+l; ++j)
{
temp+=intStrs[i][j];
}
if(stoi(temp) > k)
{
answer.emplace_back(stoi(temp));
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 4 (0) | 2023.10.31 |
---|---|
[프로그래머스/C++] Lv.0 부분 문자열 이어 붙여 문자열 만들기 (0) | 2023.10.30 |
[프로그래머스/C++] Lv.0 배열 만들기 4 (0) | 2023.10.27 |
[프로그래머스/C++] Lv.0 문자열 여러 번 뒤집기 (0) | 2023.10.26 |
[프로그래머스/C++] Lv.0 9로 나눈 나머지 (0) | 2023.10.26 |