2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
findShortestSubArray.py 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class Solution:
def findShortestSubArray(self, nums: List[int]) -> int:
mapper={}
for index,i in enumerate(nums):
if i in mapper:
mapper[i][2]+=1
mapper[i][1]=index
else:
mapper[i]=[index,index,1]
result=0
freq=0
for v in mapper.values():
if v[2]>freq:
freq=v[2]
result=v[1]-v[0]+1
elif v[2]==freq:
if v[1]-v[0]+1<result:
result=v[1]-v[0]+1
return result
'''
执行用时:
68 ms
, 在所有 Python3 提交中击败了
87.66%
的用户
内存消耗:
16 MB
, 在所有 Python3 提交中击败了
20.21%
的用户
'''
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助