Code RoomKth smallest in matrix
HardPrep Room Coding #1139

Kth smallest in matrix

CodingAlgorithms & data structuresSenior–Staff~30 min

Given an n x n matrix where each row and each column is sorted in ascending order, return the k-th smallest element in the matrix (in overall sorted order). 1 <= n <= 300 and 1 <= k <= n*n. Aim to beat O(n^2 log n).

Implement
kth_smallest_matrix(matrix: list[list[int]], k: int) → int
Examples
in[[[1,5,9],[10,11,13],[12,13,15]],8]out13
What a strong answer looks like

State your approach and its time/space complexity out loud before you optimize. Handle the edge cases (empty input, duplicates, overflow), and say why you chose this over the brute force. Green tests are the floor, not the grade.

0:00 of about 30 min
InputExpectedGot
[[[1,5,9],[10,11,13],[12,13,15]],8]13not run yetsample