编程语言
首页 > 编程语言> > LeetCode|1313. 解压缩编码列表(python)

LeetCode|1313. 解压缩编码列表(python)

作者:互联网

题目:
在这里插入图片描述
代码:

class Solution:
    def decompressRLElist(self, nums: List[int]) -> List[int]:
        arr=[]
        for i in range(1,len(nums),2):
            for j in range(nums[i-1]):
                arr.append(nums[i])
        return arr

标签:arr,1313,nums,python,List,解压缩,int,range
来源: https://blog.csdn.net/jilli_jelly/article/details/123104360