首页 > 编程语言> > LeetCode|1313. 解压缩编码列表(python) LeetCode|1313. 解压缩编码列表(python) 2022-02-24 09:32:43 作者:互联网 题目: 代码: 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