Notice
Recent Posts
Recent Comments
반응형
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- 백준
- dfs 백트래킹
- 하버-보슈법
- 알고리즘
- 오블완
- 국민의 힘 뿌리
- 파비우스 전략
- 다익스트라
- 내란수괴
- 티스토리챌린지
- union find
- 윤석열
- 왈왈왈
- 유니온 파인드
- ccw
- 투 포인터
- 비상계엄
- 분할정복
- Prim
- 내란죄
- 프림
- 재귀함수
- DP
- LCA
- BFS
- 이분 탐색
- 구조론
- 내란수괴 윤석열
- dfs
Archives
- Today
- Total
목록2024/08/13 (1)
Toolofv 님의 블로그
[Python] Leet code 3. 중복 문자 없는 가장 긴 부분 문자열 (Longest Substring WIthout Repeating Characters)
Given a string s, find the length of the longest substring without repeating characters. 중복 문자가 없는 가장 긴 부분 문자열의 길이를 리턴하라 입출력 예시Example 1:Input: s = "abcabcbb"Output: 3Explanation: The answer is "abc", with the length of 3.Example 2:Input: s = "bbbbb"Output: 1Explanation: The answer is "b", with the length of 1.Example 3:Input: s = "pwwkew"Output: 3Explanation: The answer is "wke", with the leng..
Algorithm
2024. 8. 13. 23:48