LCR 135.报数

​​题目来源:

        leetcode题目,网址:LCR 135. 报数 - 力扣(LeetCode)

解题思路:

        cnt 位整数最大值位 10^cnt -1,循环赋值即可。

解题代码:

class Solution {
    public int[] countNumbers(int cnt) {
        int max=1;
        for(int i=0;i

总结:

        无官方题解。


你可能感兴趣的:(#,Java,LeetCode,Java)