文件名称:leetcode2-longest_substring:代码挑战:最长子串
文件大小:13KB
文件格式:ZIP
更新时间:2024-07-19 15:20:41
系统开源
leetcode 2 最长子串 给定一个字符串,找出没有重复字符的最长子字符串的长度。 示例 1: Input: "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. 示例 2: Input: "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. 示例 3: Input: "pwwkew" Output: 3 Explanation: The answer is "wke", with the length of 3. 难度:中等 类别: 序列处理 来源:
【文件预览】:
longest_substring-master
----LICENSE(34KB)
----README.md(619B)
----longest_substring.py(1KB)