Skip to content

Commit bfcf289

Browse files
authored
Update 3.py
1 parent 362a99a commit bfcf289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

7/3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 이진 탐색 소스코드 구현
1+
# 이진 탐색 소스코드 구현 (반복문)
22
def binary_search(start, end, target, array):
33
while start <= end:
44
mid = (start + end) // 2

0 commit comments

Comments
 (0)