| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- matrix
- recursive
- Depth-first Search
- math
- string
- Medium
- 리트코드
- 중간
- binary tree
- 재귀
- backtracking
- 미디움
- 쉬움
- Binary
- dfs
- easy
- two pointers
- Array
- Python
- DP
- tree
- list
- 문자열
- binary search
- leetcode
- sorting
- hash table
- HashTable
- linked list
- 이진트리
- Today
- Total
목록packing (2)
부부의 코딩 성장 일기
1. 문제 링크 Pascal's Triangle - LeetCode Pascal's Triangle - LeetCode Can you solve this real interview question? Pascal's Triangle - Given an integer numRows, return the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two numbers directly above it as shown: [https://upload.wikimedia.o leetcode.com 2. 문제 설명 파스칼 삼각형을 알아야 함 파스칼 삼각형은 가장 위 꼭대기에는 1, 그 다음 줄에는 1, 1이..
1. 문제 링크 Longest Common Prefix - LeetCode Longest Common Prefix - LeetCode Can you solve this real interview question? Longest Common Prefix - Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow" leetcode.com 2. 문제 설명 여러 문자열을 포함한 리스트가 주어졌을 때 모든 문자열의 앞에서부터 최대한 긴 공통 ..