문돌이 존버/프로그래밍 스터디
2021. 3. 28.
(leetcode 문제 풀이) 3번, Longest Substring Without Repeating Characters
leetcode medium 문제를 얕봤다가 큰코 다쳤다. 쉽게 해결할 수 있는 문제가 전혀 아니다. 스스로 1시간이 되도록 풀지 못해 구글링을 했다. 문제 설명 Given a string s, find the length of the longest substring without repeating characters. Example 1 Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2 Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. Example 3 Input: s = "pwwke..