You've already forked devops-exercises
mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-07-09 23:45:42 +02:00
Menambahkan fitur baru (#10560)
This commit is contained in:
@ -17,7 +17,7 @@ def binary_search(arr: List[int], lb: int, ub: int, target: int) -> int:
|
||||
else:
|
||||
return binary_search(arr, lb, mid - 1, target)
|
||||
else:
|
||||
return -1
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Reference in New Issue
Block a user