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
- easy
- DP
- binary search
- 쉬움
- math
- HashTable
- Binary
- 리트코드
- Array
- backtracking
- matrix
- dfs
- 중간
- binary tree
- 이진트리
- leetcode
- recursive
- tree
- sorting
- Medium
- Python
- Depth-first Search
- list
- hash table
- two pointers
- string
- 문자열
- linked list
- 재귀
- 미디움
Archives
- Today
- Total
목록SUMMARY (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