Given a matrix of m x n size, the task is to find all saddle point of the matrix. A saddle point is an element of the matrix such that it is the minimum element in its row and maximum in its column.
I was able to come up with O(n^2) solution but was not able to complete coding in 30 mins. -_-`