$ cat ./coding/74-search-a-2d-matrix.md
[Coding]
74. Search a 2D Matrix
────────────────────────────────────────────────────────────
class Solution:
def searchMatrix(self, matrix: List[List[int]], target: int) -> bool:
rows = len(matrix)
cols = len(matrix[0])
def getVal(idx):
row = idx // cols
col = idx % cols
return matrix[row][col]
left = 0
right = rows * cols - 1
while left <= right:
mid = left + (right - left) // 2
if getVal(mid) == target:
return True
elif getVal(mid) > target:
right = mid - 1
elif getVal(mid) < target:
left = mid + 1
return False
--tags#Binary Search
$ ls ./coding/ | grep -v 74-search-a-2d-matrix