Spaces:
Runtime error
Runtime error
Delete secure.txt
Browse files- secure.txt +0 -1
secure.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
def search(arr, low, high, x): if high >= low: mid = (high + low) // 2 if arr[mid] == x: return mid elif arr[mid] > x: return search(arr, low, mid - 1, x) else: return search(arr, mid + 1, high, x) else: return -1
|
|
|
|