LeetCode 0378 - Kth Smallest Element in a Sorted Matrix
Kth Smallest Element in a Sorted Matrix
Desicription
Given a n x n matrix where each of the rows and columns are sorted in ascending order, find the kth smallest element in the matrix.
Note that it is the kth smallest element in the sorted order, not the kth distinct element.
Example:
1 | matrix = [ |
Note:
You may assume k is always valid, 1 ≤ k ≤ n^2.
Solution
1 | class Solution { |