Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 383 Bytes

1470-kir3i.md

File metadata and controls

25 lines (16 loc) · 383 Bytes

1470. Shuffle the Array

Solution

  • 시간복잡도: O(N)

  • 알고리즘

    구현

  • 풀이설명

    nums를 순회하며 extend()를 이용해 ans 리스트를 완성합니다.

  • 소스코드

class Solution:
    def shuffle(self, nums, n):
        ans = []
        for i in range(n):
            ans.extend([nums[i], nums[n+i]])
        return ans