[0357] 计算各个位数不同的数字个数
- GitHub
- http://leetcode.xuezhisd.top/post/ffbd3b4a.html
- https://leetcode.com/problems/count-numbers-with-unique-digits
- https://leetcode-cn.com/problems/count-numbers-with-unique-digits
题目描述
给定一个非负整数 n,计算各位数字都不同的数字 x 的个数,其中 0 ≤ x < 10n 。
示例:
输入: 2
输出: 91
解释: 答案应为除去 11,22,33,44,55,66,77,88,99
外,在 [0,100) 区间内的所有数字。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |