357:统计各位数字都不同的数字个数

This commit is contained in:
轩辕龙儿 2022-04-11 11:19:43 +08:00
parent e0cb694765
commit d3bf1deb4a
2 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,63 @@
//给你一个整数 n 统计并返回各位数字都不同的数字 x 的个数其中 0 <= x < 10ⁿ
//
//
//
//
// 示例 1
//
//
//输入n = 2
//输出91
//解释答案应为除去 112233445566778899 0 x < 100 范围内的所有数字
//
//
// 示例 2
//
//
//输入n = 0
//输出1
//
//
//
//
//
//
// 提示
//
//
// 0 <= n <= 8
//
// Related Topics 数学 动态规划 回溯 👍 217 👎 0
package leetcode.editor.cn;
//357:统计各位数字都不同的数字个数
public class CountNumbersWithUniqueDigits {
public static void main(String[] args) {
Solution solution = new CountNumbersWithUniqueDigits().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int countNumbersWithUniqueDigits(int n) {
if (n == 0) {
return 1;
}
if (n == 1) {
return 10;
}
int sub = 9;
int count = 10;
int mul = 9;
for (int i = 2; i <= n; i++) {
count += mul * sub;
mul *= sub;
sub--;
}
return count;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,30 @@
给你一个整数 <code>n</code> ,统计并返回各位数字都不同的数字 <code>x</code> 的个数,其中 <code>0 &lt;= x &lt; 10<sup>n</sup></code><sup>&nbsp;</sup>
<div class="original__bRMd">
<div>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>n = 2
<strong>输出:</strong>91
<strong>解释:</strong>答案应为除去 <code>11、22、33、44、55、66、77、88、99 </code>外,在 0 ≤ x &lt; 100 范围内的所有数字。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>n = 0
<strong>输出:</strong>1
</pre>
</div>
</div>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>0 &lt;= n &lt;= 8</code></li>
</ul>
<div><div>Related Topics</div><div><li>数学</li><li>动态规划</li><li>回溯</li></div></div><br><div><li>👍 217</li><li>👎 0</li></div>