LeetCode—剑指Offer:打印从1到最大的n位数(暴力)

打印从1到最大的n位数(简单)

2020年8月18日

题目来源:力扣
LeetCode—剑指Offer:打印从1到最大的n位数(暴力)_第1张图片
解题
水题

class Solution {
    public int[] printNumbers(int n) {
        int max=(int)Math.pow(10,n)-1;
        int[] res=new int[max];
        for(int i=0;i<max;i++){
            res[i]=i+1;
        } 
        return res;
    }
}

LeetCode—剑指Offer:打印从1到最大的n位数(暴力)_第2张图片

你可能感兴趣的:(LeetCode)