1 Star 0 Fork 0

蓝桥云课/python-100

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
084-substr.py 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyi733112 提交于 2020-03-30 16:23 . python-100 answer
class Solution(object):
def longest_substr(self, string, k):
if string is None:
raise TypeError('string cannot be None')
if k is None:
raise TypeError('k cannot be None')
low_index = 0
max_length = 0
chars_to_index_map = {}
for index, char in enumerate(string):
chars_to_index_map[char] = index
if len(chars_to_index_map) > k:
low_index = min(chars_to_index_map.values())
del chars_to_index_map[string[low_index]]
low_index += 1
max_length = max(max_length, index - low_index + 1)
return max_length
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lanqiao-courses/python-100.git
git@gitee.com:lanqiao-courses/python-100.git
lanqiao-courses
python-100
python-100
master

搜索帮助