728x90
https://school.programmers.co.kr/learn/courses/30/lessons/142086?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
vector<int> solution(string s) {
vector<int> answer;
for (int i = 0; i < s.length(); i++)
{
bool check = false;
int count = 1;
for (int j = i-1; j >= 0; j--)
{
if (s[i] == s[j])
{
answer.push_back(count);
check = true;
break;
}
count++;
}
if(check == false)
answer.push_back(-1);
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 푸드 파이트 대회 C++ (0) | 2023.08.17 |
---|---|
[프로그래머스]Lv1 과일 장수 C++ (0) | 2023.08.17 |
[프로그래머스]Lv1 크기가 작은 부분 문자열 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 개인정보 수집 유효기간 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 둘만의 암호 C++ (0) | 2023.08.07 |