티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/12906
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> arr)
{
vector<int> answer;
int temp = arr[0];
answer.push_back(arr[0]);
for(int i=1; i<arr.size(); i++) {
if(temp != arr[i]) {
answer.push_back(arr[i]);
temp = arr[i];
}
}
return answer;
}
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 모의고사(level1) (0) | 2020.02.07 |
---|---|
[C++][완전탐색] 프로그래머스 - 소수 찾기(Level2) (2) | 2019.12.31 |
[C++]프로그래머스 - 단어 변환(level3) (0) | 2019.12.06 |
[C++]프로그래머스 - 124 나라의 숫자(level2) (0) | 2019.12.06 |
[C++]프로그래머스 - 완주하지 못한 선수(level1) (0) | 2019.12.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- programmers
- 해시
- 딕셔너리
- left join
- 스택
- hash
- Permutation
- 순열
- 코딩테스트
- 2020 KAKAO BLIND RECRUITMENT
- BOJ
- SW Expert
- 괄호
- combination
- 힙
- 프로그래머스
- 우선순위큐
- C++
- 재귀
- 구현
- 문자열
- SWExpert
- 백준
- 정렬
- dictionary
- 2019 Kakao Blind Recruitment
- 문자열처리
- 완전탐색
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함