We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a9feb commit 6a7c251Copy full SHA for 6a7c251
1 file changed
7/2.py
@@ -13,7 +13,7 @@ def binary_search(array, target, start, end):
13
else:
14
return binary_search(array, target, mid + 1, end)
15
16
-# n(원소의 개수)과 target(찾고자 하는 문자열)을 입력 받기
+# n(원소의 개수)과 target(찾고자 하는 값)을 입력 받기
17
n, target = list(map(int, input().split()))
18
# 전체 원소 입력 받기
19
array = list(map(int, input().split()))
0 commit comments