码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode #1389. Create Target Array in the Given Order

时间:2020-12-04 11:06:02      阅读:6      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!