Search in a Matrix
Problem Statement
Given a matrix mat[][] of size N x M, where every row and column is sorted in increasing order, and a number X is given. The task is to find whether element X is present in the matrix or not.
Example 1
Example 2
Task
You don't need to read input or print anything. You just have to complete the function matSearch() which takes a 2D matrix mat[][], its dimensions N and M and integer X as inputs and returns 1 if the element X is present in the matrix and 0 otherwise.
Expected Time Complexity : O(N + M).
Expected Auxiliary Space : O(1)
Constraints :
1 <= N, M <= 1005
1 <= mat[][] <= 10000000
1 <= X <= 10000000
0 Comments