#include <iostream>
#include <iomanip>
#include <vector>
#include <numeric>
#include <math.h>
#include <algorithm>
#include <functional>
using namespace std;
int main() {
int N;
cin >> N;
vector<int> arr(N);
for(int i = 0; i < N; i++) {
cin >> arr[i];
}
sort(arr.begin(), arr.end());
arr.erase(unique(arr.begin(),arr.end()), arr.end());
for(int it : arr) {
cout << it;
it == arr.back() ? cout << "\n" : cout << " ";
}
}
솔팅해서 중복되는 것들은 뒤로 보내고 그것들만 제거하도록 하였습니다. 이후 출력할 때
맨 마지막 것이 아니면 공백을 추가하고 마지막 출력이 되는 순간 엔터를 출력하도록 하였습니다.
문제: https://www.acmicpc.net/problem/10867
'Problem Solving > 백준' 카테고리의 다른 글
[백준/C++] 1431번 시리얼 번호 (0) | 2022.02.10 |
---|---|
[백준/C++] 11656번 접미사 배열 (0) | 2022.02.10 |
[백준/C++] 10814번 나이순 정렬 (0) | 2022.02.10 |
[백준/C++] 2693번 N번째 큰 수 (0) | 2022.02.10 |
[백준/C++] 10250번 ACM 호텔 (0) | 2022.01.28 |