Skip to content

Commit 1e134b7

Browse files
authored
Update 3.py
1 parent 578340b commit 1e134b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

15/3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
array.append(int(input()))
88
array.sort() # 이진 탐색 수행을 위해 정렬 수행
99

10-
start = 1 # 가능한 최소 거리 차이(min gap)
11-
end = array[-1] - array[0] # 가능한 최대 거리 차이(max gap)
10+
start = 1 # 가능한 최소 거리(min gap)
11+
end = array[-1] - array[0] # 가능한 최대 거리(max gap)
1212
result = 0
1313

1414
while(start <= end):

0 commit comments

Comments
 (0)