diff --git a/notes/48. 最长不含重复字符的子字符串.md b/notes/48. 最长不含重复字符的子字符串.md index 576c3905..b5a25808 100644 --- a/notes/48. 最长不含重复字符的子字符串.md +++ b/notes/48. 最长不含重复字符的子字符串.md @@ -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。