首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
leetcod2000专题
2022年2月2日刷2道简单题目过初二:一道是Leetcode-2022,另一道是Leetcod2000
题目描述 2022. 将一维数组转变成二维数组 解题代码 public class Solution2022 {public int[][] construct2DArray(int[] original, int m, int n) {if (original.length != m * n) {return new int[0][0];}int[][] res = new int[
阅读更多...