# 力扣357. 统计各位数字都不同的数字个数


## 力扣357. Count Numbers with Unique Digits（统计各位数字都不同的数字个数）

计算 0≤x<10^n 中各位数字都不同的 x 的个数。

示例 1：

![](../posts/01_学习/87_LeetCode/0357_统计各位数字都不同的数字个数/img/0357-1-description.png)

```
输入：...
输出：...
解释：...
```

提示：
- ...

