728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
string solution(string my_string, vector<int> indices) {
string answer = my_string;
sort(indices.begin(),indices.end(),greater<>());
int prev = 0;
for(int n : indices)
{
answer.erase(n,1);
}
return answer;
}
https://8156217.tistory.com/7
C++ Sort
greater<>()
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 가까운 1 찾기 (0) | 2023.11.08 |
---|---|
[프로그래머스/C++] Lv.0 카운트 다운 (0) | 2023.11.07 |
[프로그래머스/C++] Lv.0 배열 만들기 1 (0) | 2023.11.06 |
[프로그래머스/C++] Lv.0 문자 개수 세기 (0) | 2023.11.06 |
[프로그래머스/C++] Lv.0 qr code (0) | 2023.11.05 |