74. Search a 2D Matrix
Problem Statement
Input: matrix = [[1,3,5,7],[10,11,16,20],[23,30,34,60]], target = 3
Output: trueInput: matrix = [[1,3,5,7],[10,11,16,20],[23,30,34,60]], target = 13
Output: falseIntuition
Links
Video Links
Approach 1:
Approach 2:
Approach 3:
Approach 4:
Similar Problems
Last updated

