Skip to content

Commit cb06b39

Browse files
author
zj
committed
357. Count Numbers with Unique Digits
1 parent 996595d commit cb06b39

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 357. Count Numbers with Unique Digits
2+
Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.
3+
4+
##### Example:
5+
6+
Given n = 2, return 91. (The answer should be the total numbers in the range of 0 ≤ x < 100, excluding `[11,22,33,44,55,66,77,88,99]`)
7+
8+
##### Hint:
9+
10+
A direct way is to use the backtracking approach.
11+
12+
Backtracking should contains three states which are (the current number, number of steps to get that number and a bitmask which represent which number is marked as visited so far in the current number). Start with state (0,0,0) and count all valid number till we reach number of steps equals to 10^n.
13+
14+
This problem can also be solved using a dynamic programming approach and some knowledge of combinatorics.
15+
16+
Let f(k) = count of numbers with unique digits with length equals k.
17+
18+
f(1) = 10, ..., f(k) = 9 * 9 * 8 * ... (9 - k + 2) [The first factor is 9 because a number cannot start with 0].
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* @param {number} n
3+
* @return {number}
4+
*/
5+
//Distribution 88.89%,runtime 92ms
6+
var countNumbersWithUniqueDigits = function(n) {
7+
if (n < 0) return 0;
8+
if (n === 0) return 1;
9+
if (n == 1) return 10;
10+
var counts = 10;
11+
var m = 9;
12+
for(var i=1, j=9; i<n && j>0; i++, j--){
13+
m *= j;
14+
counts += m;
15+
}
16+
return counts;
17+
};

0 commit comments

Comments
 (0)