반응형
leetcode.com/problems/longest-substring-without-repeating-characters/
중복 문자열 없는 가장 긴 부분문자열 구하기.
슬라이딩 윈도우 + 투 포인터로 해결이 가능하다.
아래 풀이는 이 책의 코드를 참고했다.
|
반응형
'프로그래밍 > 코딩테스트 문제풀이' 카테고리의 다른 글
[Python] LeetCode 78. Subsets (0) | 2020.11.02 |
---|---|
[Python] 프로그래머스. 예상 대진표 (Level 2) (0) | 2020.10.29 |
[Python] LeetCode 739. Daily Temperature (0) | 2020.10.24 |
[Python] LeetCode 234. Palindrome Linked List (0) | 2020.10.23 |
[Python] LeetCode 121. Best time to buy and sell stock (0) | 2020.10.21 |