티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/12906
def solution(arr):
answer = []
answer.append(arr[0])
for i in range(1, len(arr)):
if arr[i] != arr[i-1]:
answer.append(arr[i])
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 여행경로 - Python (0) | 2021.01.04 |
---|---|
[프로그래머스] 두 개 뽑아서 더하기 - Python (0) | 2020.09.26 |
[프로그래머스] 위장 - Python (0) | 2020.07.12 |
[프로그래머스] 네트워크 - Python (0) | 2020.07.11 |
[프로그래머스] 모의고사 - Python (0) | 2020.07.11 |