代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 python3 @param n int整型 最大位数 @return int整型一维数组 class Solution: def printNumbers(self , n: int) -> List[int]: # write code here number = 10**n -1; list =[] i =0 while i<number: list.append(i+1) i += 1 return list