목록TodayILearnedCpp (1)
나무 숲
TIL / C++ unique
unique 범위 안에서 연속된 수들 중 중복되는 값을 제거, unique한 값만 남긴다. Return : An iterator to the element that follows the last element not removed. 참고 : http://www.cplusplus.com/reference/algorithm/unique/ #include #include #include using namespace std; vector solution(vector arr) { unique(arr.begin(), arr.end()); return arr; } int main() { vector result = solution({1,1,3,3,0,1,1}); for (auto& tmp : result){ cout
Career
2020. 1. 20. 11:31