[LeetCode] Kth Smallest Number in Multiplication Table

1 · · March 17, 2022, 2:01 p.m.
668. Kth Smallest Number in Multiplication Table Nearly everyone has used the Multiplication Table. The multiplication table of size m x n is an integer matrix mat where mat[i][j] == i * j (1-indexed). Given three integers m, n, and k, return the kth smallest element in the m x n multiplication table. ...