soulmachine / leetcode

LeetCode题解,151道题完整版。
BSD 3-Clause "New" or "Revised" License
11.27k stars 3.43k forks source link

12.5 Longest Substring Without Repeating Characters #26

Open Wakeupbuddy opened 10 years ago

Wakeupbuddy commented 10 years ago

The input string could contain characters other than a-z. So we need to change the size of last array from 26 to 256.

soulmachine commented 9 years ago

你说的是指 12.5 "Longest Substring Without Repeating Characters" 这道题?