Skip to content

Commit 6a7c251

Browse files
authored
Update 2.py
1 parent 57a9feb commit 6a7c251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

7/2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def binary_search(array, target, start, end):
1313
else:
1414
return binary_search(array, target, mid + 1, end)
1515

16-
# n(원소의 개수)과 target(찾고자 하는 문자열)을 입력 받기
16+
# n(원소의 개수)과 target(찾고자 하는 )을 입력 받기
1717
n, target = list(map(int, input().split()))
1818
# 전체 원소 입력 받기
1919
array = list(map(int, input().split()))

0 commit comments

Comments
 (0)