#生成 1-10的n次方-1 的列表
class Solution:
def printNumbers(self , n: int) -> List[int]:
# write code here
return [i for i in range(1,10**n)]
#生成 1-10的n次方-1 的列表
class Solution:
def printNumbers(self , n: int) -> List[int]:
# write code here
return [i for i in range(1,10**n)]