标签:return 时间复杂度 tps solution 题目 for pre com self
1389. Create Target Array in the Given Order
创建一个新数组rat,将nums中的数按照index的位置插入rat即可。
时间复杂度:O(n*n)
空间复杂度:O(n)
class Solution:
def createTargetArray(self, nums: List[int], index: List[int]) -> List[int]:
rat = []
for i in range(len(nums)):
rat.insert(index[i], nums[i])
return rat
LeetCode #1389. Create Target Array in the Given Order
标签:return 时间复杂度 tps solution 题目 for pre com self
原文地址:https://www.cnblogs.com/RatsCommander/p/14059451.html