Skip to content

Commit

Permalink
Update 2.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ndb796 authored Sep 9, 2020
1 parent 8fc1e7d commit 448d315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 15/2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 이진 탐색 소스코드 구현 (재귀 함수)
# 이진 탐색 소스코드 구현(재귀 함수)
def binary_search(array, start, end):
if start > end:
return None
Expand Down

0 comments on commit 448d315

Please sign in to comment.