공부하고 기록하는, 경제학과 출신 개발자의 노트

프로그래밍/코딩테스트 문제풀이

[Python] LeetCode 3. Longest Substring without repeating characters

inspirit941 2020. 10. 27. 09:32
반응형

leetcode.com/problems/longest-substring-without-repeating-characters/

 

Longest Substring Without Repeating Characters - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

중복 문자열 없는 가장 긴 부분문자열 구하기.

슬라이딩 윈도우 + 투 포인터로 해결이 가능하다.

 

아래 풀이는 이 책의 코드를 참고했다.

파이썬 알고리즘 인터뷰
국내도서
저자 : 박상길
출판 : 책만 2020.07.15
상세보기

 

반응형