剑指 Offer 17. 打印从1到最大的n位数

题目链接:

https://leetcode-cn.com/problems/da-yin-cong-1dao-zui-da-de-nwei-shu-lcof/

题意:

按顺序打印出从 1 到最大的 n 位十进制数

题解:

输出从1到pow(10,n)(10的n次幂)即可。

代码:

class Solution:
    def printNumbers(self, n: int) -> List[int]:
        ret  = []
        for i in range(1,pow(10,n)):
            ret.append(i)
        return ret 
上一篇:cf1511B. GCD Length


下一篇:一道进制转化的OJ题(浅谈进制转换)