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
- leetcode
- math
- 쉬움
- two pointers
- binary search
- Python
- 중간
- backtracking
- tree
- binary tree
- 미디움
- matrix
- Array
- Medium
- HashTable
- 재귀
- recursive
- DP
- string
- dfs
- 이진트리
- sorting
- linked list
- Binary
- Depth-first Search
- 문자열
- list
- 리트코드
- hash table
- easy
Archives
- Today
- Total
목록2023/10/28 (1)
부부의 코딩 성장 일기
LeetCode 1(Two Sum, Python)
1. 문제 링크 https://leetcode.com/problems/two-sum/ 2. 문제 설명 list와 target 숫자가 주어졌을 때, list의 두 수를 더했을 때 target 숫자가 되는, index list를 반환하는 문제 예시) nums = [2,7,11,15], target = 9 → output [0,1] 3. 처음 풀이 이중 for문을 돌려서, nums[i]와 nums[j]를 더한 게 target이면 index를 반환 class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)): for j in range(i+1,len(nums)): if nums[i]+num..
Algorithm/LeetCode
2023. 10. 28. 21:42