728x90
https://school.programmers.co.kr/learn/courses/30/lessons/147355?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
int solution(string t, string p) {
int answer = 0;
for (int i = 0; i < t.size() - p.size() + 1; i ++)
{
string s = t.substr(i, p.size());
if (p >= s)
answer++;
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 과일 장수 C++ (0) | 2023.08.17 |
---|---|
[프로그래머스]Lv1 가장 가까운 같은 글자 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 개인정보 수집 유효기간 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 둘만의 암호 C++ (0) | 2023.08.07 |
[프로그래머스]Lv1 카드 뭉치 C++ (0) | 2023.08.07 |