1929. 数组串联
解题思路
1.初始化n*2的数组
2.用system arraycopy操作
解题遇到的问题
无
后续需要总结学习的知识点
无
##解法1
class Solution {
public int[] getConcatenation(int[] nums) {
//初始化n*2的数组
int[] res = new int[nums.length*2];
//用system arraycopy操作
System.arraycopy(nums, 0, res, 0, nums.length);
System.arraycopy(nums, 0, res, nums.length, nums.length);
return res;
}
}
网友评论