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
- 구현
- Binary Search
- simulation
- 파이썬
- 코딩테스트
- java
- database
- hash table
- array
- Tree
- implement
- Binary Tree
- Class
- two pointers
- Method
- Stack
- 자바
- Counting
- bit manipulation
- string
- dynamic programming
- Number Theory
- geometry
- 코테
- Matrix
- Math
- Data Structure
- SQL
- sorting
- greedy
Archives
- Today
- Total
목록memoization (2)
코린이의 소소한 공부노트
[LeetCode/Easy] 70. Climbing Stairs
1. Input 1) int n 2. Output 1) 한 번에 1계단 또는 2계단씩 올라갈 경우, n계단을 올라갈 수 있는 모든 방법의 수를 반환 3. Constraint 1) 1 2){ int[] step = new int[n]; step[0] = 1; step[1] = 2; for(int i=2 ; i
코딩테스트 풀이/JAVA
2023. 5. 9. 15:48