We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362a99a commit bfcf289Copy full SHA for bfcf289
7/3.py
@@ -1,4 +1,4 @@
1
-# 이진 탐색 소스코드 구현
+# 이진 탐색 소스코드 구현 (반복문)
2
def binary_search(start, end, target, array):
3
while start <= end:
4
mid = (start + end) // 2
0 commit comments