码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode-5404-用栈操作数组

时间:2020-05-10 23:30:32      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:push   style   leetcode   技术   def   div   list   pre   array   

题目描述:

技术图片

 

 技术图片

 

 提交:O(N)

class Solution:
    def buildArray(self, target: List[int], n: int) -> List[str]:
        res = []
        a = "Push"
        b = "Pop"
        index = 1
        for i in target:
            while index != i:
                res.append(a)
                res.append(b)
                index += 1
            res.append(a)
            index += 1
        return res

 

leetcode-5404-用栈操作数组

标签:push   style   leetcode   技术   def   div   list   pre   array   

原文地址:https://www.cnblogs.com/oldby/p/12865398.html

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