Merge b9be1f08efc214d775469060d6f61aeed8acecd2 into 2c31eddf3481a31ab5c10ebced395497c6bf9d61

This commit is contained in:
X.Sun 2022-02-05 20:41:56 -05:00 committed by GitHub
commit d562045cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,9 @@
# 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。