1 parent 68925db commit ec11c61Copy full SHA for ec11c61
2 files changed
프로그래머스/1/12906. 같은 숫자는 싫어/README.md
@@ -4,7 +4,7 @@
4
5
### 성능 요약
6
7
-메모리: 27.8 MB, 시간: 103.13 ms
+메모리: 26.5 MB, 시간: 62.64 ms
8
9
### 구분
10
@@ -16,7 +16,7 @@
16
17
### 제출 일자
18
19
-2024년 07월 03일 01:30:01
+2026년 07월 17일 11:37:39
20
21
### 문제 설명
22
프로그래머스/1/12906. 같은 숫자는 싫어/같은 숫자는 싫어.py
@@ -1,6 +1,6 @@
1
def solution(arr):
2
ans = []
3
- for i in range(len(arr) - 1):
+ for i in range(len(arr)-1):
if arr[i] == arr[i+1]:
continue
else:
0 commit comments