Count Numbers with Unique Digits
Given anon-negativeinteger n, count all numbers with unique digits, x, where 0 ≤ x < 10n.
Example:
分析
就是从高位起loop每个位,每个往后的数,可选数字都只能少一个,排列组合思想
Last updated
Given anon-negativeinteger n, count all numbers with unique digits, x, where 0 ≤ x < 10n.
Example:
分析
就是从高位起loop每个位,每个往后的数,可选数字都只能少一个,排列组合思想
Last updated