#include <vector>
#include <iostream>
using namespace std;
vector<int> solution(vector<int> arr)
{
vector<int> answer;
int tmp = arr[0];
answer.push_back(tmp);
for(int i=1; i < arr.size(); i++){
if(tmp == arr[i]){
continue;
}
tmp = arr[i];
answer.push_back(tmp);
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 수박수박수박수박수박수? (0) | 2019.07.22 |
---|---|
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2019.07.22 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2019.07.22 |
[프로그래머스] 2016년 (0) | 2019.07.22 |
[프로그래머스] K번째 수 (0) | 2019.07.22 |