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
上一篇:Python - 日期和时间


下一篇:Python变量