1
0
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:
dwicahyamaulani
2025-03-27 05:18:33 +07:00
committed by GitHub
parent 9a1d1e76e9
commit 9775849857

View File

@ -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__':