未验证 提交 8319b716 编写于 作者: K Keqi Huang 提交者: GitHub

Update 1015._Numbers_With_1_Repeated_Digit.md

上级 832d04a4
......@@ -72,7 +72,6 @@ class Solution:
return N - res
```
```
For anyone who doesn't understand the function `def A()`, you can see the iterative version of it below.
```python
def A(m, n):
......@@ -85,7 +84,7 @@ For anyone who doesn't understand the function `def A()`, you can see the iterat
It means the `permutation` of `m * (m-1) * ... * (m-(n-1))`.
And for why use `9*A(9,i-1)` instead of `A(9,i)`, that's because there should be no leading `0`, but the following digit can be `0`.
```
***将函数A重命名为permu***
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册