Leetcode 357. Count Numbers with
2018-10-22 本文已影响3人
SnailTyan
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description
![](https://img.haomeiwen.com/i3232548/8f9952a211c7f983.png)
2. Solution
class Solution {
public:
int countNumbersWithUniqueDigits(int n) {
int total = 1;
for(int i = 0; i < n; i++) {
int count = 9;
for(int j = 1; j <= i; j++) {
count *= (10 - j);
}
total += count;
}
return total;
}
};