Bug Report for https://neetcode.io/problems/k-th-smallest-in-lexicographical-order
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
The ouput for the example is 2 when it should be 11
Input: n = 11, k = 3
Output: 2
Explanation: The lexicographical order is [1,10,11,2,3,4,5,6,7,8,9]. The third smallest number is 11.