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
- 파이썬
- implement
- Binary Search
- database
- Matrix
- SQL
- sorting
- Number Theory
- 코딩테스트
- hash table
- two pointers
- 코테
- Class
- Math
- Tree
- Stack
- greedy
- Binary Tree
- string
- Data Structure
- 자바
- geometry
- simulation
- array
- bit manipulation
- 구현
- Counting
- java
- dynamic programming
- Method
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