P12 无重复字符的最长子串,难度中等。
题目
English
1 | Given a string, find the length of the longest substring without repeating characters. |
中文
1 | 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 |
解题
伪代码描述(推荐)
解题和源码
Python代码
1 | class Solution(object): |
执行结果:
1 | 执行用时 :24 ms, 在所有 python 提交中击败了99.91%的用户 |
本文作者:
Yao Zhu
发布时间: 2019-12-21
最后更新: 2019-12-21
本文链接: https://juoyo.github.io/posts/a627a612.html
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!
发布时间: 2019-12-21
最后更新: 2019-12-21
本文链接: https://juoyo.github.io/posts/a627a612.html
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!