Skip to content

Commit e06e22c

Browse files
committed
move comments to top
1 parent eedadad commit e06e22c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

search-in-rotated-sorted-array/hi-rachel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from typing import List
2-
31
"""
42
https://leetcode.com/problems/search-in-rotated-sorted-array/solutions/
53
@@ -11,6 +9,8 @@
119
SC: O(1)
1210
"""
1311

12+
from typing import List
13+
1414
class Solution:
1515
def search(self, nums: List[int], target: int) -> int:
1616
left, right = 0, len(nums) - 1

0 commit comments

Comments
 (0)