728x90
반응형
첫번째 코드
시작 인덱스에 대해서 이해하고 있으면 순서대로 넣으면 된다!
class Solution:
def shuffle(self, nums: List[int], n: int) -> List[int]:
index1 = 0
index2 = n
answer = []
for i in range(len(nums) // 2):
answer.append(nums[index1])
answer.append(nums[index2])
index1 += 1
index2 += 1
return answer
통과
링크
https://github.com/ornni/leetcode/tree/main/1470-shuffle-the-array
반응형
'코딩 테스트 > leetcode' 카테고리의 다른 글
Final Prices With a Special Discount in a Shop (0) | 2024.06.27 |
---|---|
Removing Stars From a String (0) | 2024.06.26 |
Divisor Game (0) | 2024.06.24 |
Split a String in Balanced Strings (0) | 2024.06.22 |
Find Words Containing Character (0) | 2024.06.21 |