HTMLify
1389.py
Views: 450 | Author: abh
1 2 3 4 5 6 7 | class Solution: def createTargetArray(self, nums: List[int], index: List[int]) -> List[int]: target = [] for n, i in zip(nums, index): target.insert(i, n) return target |