We use cookies for site analytics. Accept to help us understand how the site is used. See our Privacy Policy for details.
A hard math problem, graded against 4 test cases (2 of them hidden).
Number theory, digit manipulation, and closed-form reasoning.
Reach for it when you see: Primes, digits, base conversion, or a problem with a formula hiding behind it.
More Mathproblems →Factorial number system. Precompute factorials. With `k` made 0-indexed, the first digit's position is `k / (n-1)!`; remove it, take `k % (n-1)!`, and repeat for the rest. This builds the answer in O(n²) without listing permutations.
Time: O(n²). Space: O(n).
The full reference solution in every supported language stays in the editor above - reveal it there once you have had a real attempt.
These apply to the pattern as a whole, not just this problem.