Challenge: Search in a 2D List
Given a number, tell whether it is present in the 2D list or not.
We'll cover the following...
Problem statement
Implement a function that tells whether a given number is present in a row-wise and column wise sorted 2D list or not.
Input
A ...