Skip to content

Commit ec11c61

Browse files
committed
[level 1] Title: 같은 숫자는 싫어, Time: 62.64 ms, Memory: 26.5 MB -BaekjoonHub
1 parent 68925db commit ec11c61

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

프로그래머스/1/12906. 같은 숫자는 싫어/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### 성능 요약
66

7-
메모리: 27.8 MB, 시간: 103.13 ms
7+
메모리: 26.5 MB, 시간: 62.64 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2024년 07월 03일 01:30:01
19+
2026년 07월 17일 11:37:39
2020

2121
### 문제 설명
2222

프로그래머스/1/12906. 같은 숫자는 싫어/같은 숫자는 싫어.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def solution(arr):
22
ans = []
3-
for i in range(len(arr) - 1):
3+
for i in range(len(arr)-1):
44
if arr[i] == arr[i+1]:
55
continue
66
else:

0 commit comments

Comments
 (0)