leetcode1389
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1389相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def createTargetArray(self, nums: List[int], index: List[int]) -> List[int]: 3 n = len(nums) 4 result = [] 5 for i in range(n): 6 idx,number = index[i],nums[i] 7 result.insert(idx,number) 8 return result
算法思路:数组插入元素。
使用python的list内置insert()函数。
以上是关于leetcode1389的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode --- 1389. Create Target Array in the Given Order 解题报告
poj1389:Area of Simple Polygons——扫描线线段树题解+全套代码注释
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段