
Given an n x n matrix where each of the rows and columns is sorted in ascending order, return the k ^th smallest element in the matrix .
Note that it is the k ^th smallest element in the sorted order , not the k ^th distinct element.
You must find a solution with a memory complexity better than O(n ^2 ) .
n == matrix.length == matrix[i].length1 <= n <= 300-10 ^9 <= matrix[i][j] <= 10 ^9All the rows and columns of matrix are guaranteed to be sorted in non-decreasing order .1 <= k <= n ^2Follow up:Could you solve the problem with a constant memory (i.e., O(1) memory complexity)?Could you solve the problem in O(n) time complexity? The solution may be too advanced for an interview but you may find reading this paper fun.