반응형
#include <vector>
#include<algorithm>
using namespace std;
vector<int> solution(vector<int> arr)
{
arr.erase(unique(arr.begin(), arr.end()), arr.end());
return arr;
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
48] 프로그래머스 문자열을 정수로 바꾸기 (0) | 2020.09.16 |
---|---|
47] 프로그래머스 K번째수 (0) | 2020.09.15 |
45] 프로그래머스 2016년 (0) | 2020.09.15 |
44] 프로그래머스 완주하지 못한 선수 (0) | 2020.09.14 |
43] 프로그래머스 두 개 뽑아서 더하기 (0) | 2020.09.14 |
댓글