Back to all solutions
#378 - Kth Smallest Element in a Sorted Matrix
Problem Description
Given an n x n matrix where each of the rows and columns is sorted in ascending order, return the kth smallest element in the matrix.
Note that it is the kth smallest element in the sorted order, not the kth distinct element.
You must find a solution with a memory complexity better than O(n2).
Solution
/**
* @param {number[][]} matrix
* @param {number} k
* @return {number}
*/
var kthSmallest = function(matrix, k) {
return matrix.flat().sort((a, b) => a - b)[k - 1];
};