LeetCode: Binary Search
Problem:
https://leetcode.com/problems/binary-search/description/
Code:
class Solution:
def search(self, nums: List[int], target: int) -> int:
if not nums:
return -1
low, high = 0, len(nums)-1
while low<=high...
is-power-of-two.hashnode.dev1 min read