diff --git a/Binary-Search/Binary-search.py b/Binary-Search/Binary-search.py new file mode 100644 index 0000000..fe0a7d9 --- /dev/null +++ b/Binary-Search/Binary-search.py @@ -0,0 +1,5 @@ +from typing import List + +class Solution: + def search(self, nums: List[int], target: int) -> int: + \ No newline at end of file