Algorithm/LeetCode

1929. Concatenation of Array

배열 합치기 문제

 

https://leetcode.com/problems/concatenation-of-array/description/

문제 파악 및 재정의nums라는 정수형 배열이 주어진다.
nums의 2배의 길이를 가진 ans 배열을 반환하라.
ans[i] == nums[i] and ans[i+n] == nums[i]
import java.util.Arrays;

class Solution {
    public int[] getConcatenation(int[] nums) {
        int n = nums.length;
        int[] ans = new int[n*2];
        System.arraycopy(nums, 0, ans, 0, n);
        System.arraycopy(nums, 0, ans, n, n);
        return ans;
    }
}

'Algorithm > LeetCode' 카테고리의 다른 글

2469. Convert the Temperature  (0) 2023.03.30
1920. Build Array from Permutation  (0) 2023.03.30
2319. Check if Matrix Is X-Matrix  (0) 2023.03.07
12. Integer to Roman  (0) 2023.03.07
278. First Bad Version  (0) 2023.03.03