Update 48. 最长不含重复字符的子字符串.md

This commit is contained in:
X.Sun 2022-01-24 21:35:58 +08:00 committed by GitHub
parent 456ff183d5
commit b9be1f08ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,9 @@
# 48. 最长不含重复字符的子字符串 # 48. 最长不含重复字符的子字符串
## 原题
[leetcode](https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof/)
## 题目描述 ## 题目描述
输入一个字符串只包含 a\~z 的字符求其最长不含重复字符的子字符串的长度例如对于 arabcacfr最长不含重复字符的子字符串为 acfr长度为 4 输入一个字符串只包含 a\~z 的字符求其最长不含重复字符的子字符串的长度例如对于 arabcacfr最长不含重复字符的子字符串为 acfr长度为 4