赞
踩
问:
给你一个长度为 n 的整数数组 nums 。请你构建一个长度为 2n 的答案数组 ans ,数组下标 从 0 开始计数 ,对于所有 0 <= i < n 的 i ,满足下述所有要求:
原题链接:https://leetcode.cn/problems/concatenation-of-array/
ans[i] == nums[i]
ans[i + n] == nums[i]
具体而言,ans 由两个 nums 数组 串联 形成。
返回数组 ans 。
例:
输入:nums = [1,2,1]
输出:[1,2,1,1,2,1]
答:
class Solution {
public int[] getConcatenation(int[] nums) {
int len = nums.length;
int[] ans = new int[len*2];
for(int i = 0;i < len;i++)
{
ans[i] = nums[i];
ans[i+len] = nums[i];
}
return ans;
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。