컴공생의 다이어리
[프로그래머스] 같은 숫자는 싫어 - 파이썬(Python) 본문
[프로그래머스] 같은 숫자는 싫어 - 파이썬(Python)
def solution(arr):
answer = []
for i in arr:
if not answer or answer[-1] != i:
answer.append(i)
return answer
https://school.programmers.co.kr/learn/courses/30/lessons/12906
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 이중우선순위큐 - 파이썬(Python) (0) | 2022.07.28 |
---|---|
[프로그래머스] 올바른 괄호 - 파이썬(Python) (0) | 2022.07.27 |
[파이썬, Python] 백준 10986번 : 나머지 합 (0) | 2022.07.24 |
[파이썬, Python] 백준 20040번 : 사이클 게임 (0) | 2022.07.23 |
[파이썬, Python] 백준 1916번 : 최소비용 구하기 (0) | 2022.07.20 |
Comments