[leetCode] 1470. Shuffle the Array (Python)
▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/shuffle-the-array/ Shuffle the Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [x₁, x₂,..., y₁, y₂,...] 형태의 2n개의 요소로 구성된 배열이 주어진다. [x₁, y₁, x₂,, y₂,.. 형식으로 반환하는 문제. *아래 첨자는 인덱스 번호를 의미한다. 예를 들어 [1,2,3,4,5,6]라는 배열이 있다면 [1,4,2,5,3..