[Leetcode] 1470. Shuffle the Array (JS)

OROSY·2021년 4월 27일
0

Algorithms

목록 보기
5/38
post-thumbnail

출처

Leetcode 1470. Shuffle the Array

문제

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @param {number[]} nums
 * @param {number} n
 * @return {number[]}
 */
var shuffle = function(nums, n) {
    const result = []
    for (i = 0; i < n; i++) {
        result.push(nums[i])
        result.push(nums[i + n])
    }
    return result;
};
cs

실행 결과

profile
Life is a matter of a direction not a speed.

0개의 댓글