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 |
Tags
- 이진트리
- leetcode
- Array
- 리트코드
- string
- 문자열
- easy
- sorting
- list
- 쉬움
- DP
- linked list
- 중간
- backtracking
- Binary
- Depth-first Search
- math
- 미디움
- matrix
- tree
- hash table
- 재귀
- recursive
- binary tree
- Medium
- binary search
- dfs
- two pointers
- HashTable
- Python
Archives
- Today
- Total
목록2024/02/11 (1)
부부의 코딩 성장 일기
LeetCode 228(Summary Ranges, Python)
1. 문제 링크 Summary Ranges - LeetCode LeetCode - The World's Leading Online Programming Learning Platform 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 2. 문제 설명 정렬된 정수 배열이 주어졌을 때, 연속된 범위를 요약하여 문자열의 리스트로 반환하는 것 예시) [0,1,2,4,5,7]이 주어지면, 이 배열을 연속된 범위로 요약하면 ["0->2","4->5","7"] 3. 처음 풀이 two point..
Algorithm/LeetCode
2024. 2. 11. 19:00