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
- 문자열
- 재귀
- Depth-first Search
- math
- Array
- 쉬움
- Python
- list
- HashTable
- backtracking
- DP
- binary tree
- recursive
- linked list
- hash table
- Binary
- 미디움
- leetcode
- dfs
- 중간
- tree
- Medium
- sorting
- easy
- binary search
- two pointers
- matrix
- 리트코드
- string
- 이진트리
Archives
- Today
- Total
목록3sum (1)
부부의 코딩 성장 일기
LeetCode 15(3Sum, Python)
1. 문제 링크 https://leetcode.com/problems/3sum/ 3Sum - LeetCode Can you solve this real interview question? 3Sum - Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the solution set must not contain du leetcode.com 2. 문제 설명 주어진 리스트 nums와 서로 다른 인덱스 i, j, k에 대하여 nums[i]+nums[j]+nums[..
Algorithm/LeetCode
2023. 12. 14. 19:00