From 4eef4f1ddcdfe8a600ae7989d84f50c3b7e13c24 Mon Sep 17 00:00:00 2001 From: Rytxxx Date: Tue, 13 May 2025 01:44:38 +0900 Subject: [PATCH] Binary Search --- Binary-Search/Binary-search.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Binary-Search/Binary-search.py 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