摘要: leetcode地址,Java版代码: 1 class Solution { 2 public int[] printNumbers(int n) { 3 int end = (int)Math.pow(10, n) - 1; 4 int[] res = new int[end]; 5 for(in 阅读全文
posted @ 2020-09-15 09:35 Sempron2800+ 阅读(138) 评论(0) 推荐(0) 编辑