azedplayer
azedplayer
全部文章
分类
Linux(3)
NOI基础编程集(1)
PAT(3)
PAT基础编程题目集(18)
Python(1)
安装及配置(2)
数据结构(7)
未归档(136)
校招(3)
题解(1)
归档
标签
去牛客网
登录
/
注册
wwt的Blog
那是什么
TA的专栏
16篇文章
3人订阅
测试开发面经
16篇文章
12664人学习
全部文章
(共1篇)
题解 | #打印从1到最大的n位数#
class Solution: def printNumbers(self , n: int) -> List[int]: # write code here return [i for i in range(1,10**n)]
Python3
2022-02-21
8
867