[프로그래머스] 같은 숫자는 싫어 풀이



1. 문제

https://programmers.co.kr/learn/courses/30/lessons/12906

2. 풀이 방법

  • 이전 단어와 비교하여 다를 경우에는 정답 배열에 추가해주는 소스코드를 아래와 같이 간단하게 짜면 됩니다.

3. 소스코드

3.1. 내 풀이

def solution(arr):
    answer = [arr[0]]
    before_word = arr[0] 
    for x in arr[1:]: 
        if before_word != x:
            before_word = x
            answer.append(x) 
    return answer