-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path74.py
26 lines (26 loc) · 812 Bytes
/
74.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# https://neetcode.io/problems/search-2d-matrix
# https://leetcode.com/problems/search-a-2d-matrix/description/
from typing import List
class Solution:
def searchMatrix(self, matrix: List[List[int]], target: int) -> bool:
b, t = 0, len(matrix) - 1
row = 0
while b <= t:
m = (t + b) // 2
if matrix[m][0] > target:
t = m - 1
elif matrix[m][-1] < target:
b = m + 1
else:
row = m
break
l, r = 0, len(matrix[row]) - 1
while l <= r:
m = (l + r) // 2
if matrix[row][m] > target:
r = m - 1
elif matrix[row][m] < target:
l = m + 1
else:
return True
return False