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 |
Tags
- string
- Counting
- Binary Tree
- bit manipulation
- greedy
- Data Structure
- Stack
- database
- two pointers
- hash table
- 코테
- Matrix
- 자바
- sorting
- 코딩테스트
- java
- Math
- 구현
- simulation
- 파이썬
- Tree
- SQL
- Binary Search
- Class
- Number Theory
- Method
- array
- geometry
- dynamic programming
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 70. Climbing Stairs 본문
1. Input
1) int n
2. Output
1) 한 번에 1계단 또는 2계단씩 올라갈 경우, n계단을 올라갈 수 있는 모든 방법의 수를 반환
3. Constraint
1) 1 <= n <= 45
4. Example
Input: n = 3 -> Output: 3
설명: 올라가는 방법은 다음과 같다.
- 1 + 1 + 1
- 1 + 2
- 2 + 1
5. Code
1) 첫 코드(2023/05/09)
class Solution {
public int climbStairs(int n) {
if(n>2){
int[] step = new int[n];
step[0] = 1; step[1] = 2;
for(int i=2 ; i<n ; i++)
step[i] = step[i-1] + step[i-2];
return step[n-1];
} else
return n;
}
}
- 처음에 recursive로 구현했는데, n=45일 때 시간 초과가 나왔다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 9095. 1, 2, 3 더하기 (0) | 2023.05.12 |
---|---|
[LeetCode/Easy] 94. Binary Tree Inorder Traversal (0) | 2023.05.09 |
[LeetCode/Easy] 67. Add Binary (0) | 2023.05.09 |
[프로그래머스/Lv.1] 공원 산책 (0) | 2023.05.09 |
[프로그래머스/Lv.1] 추억 점수 (0) | 2023.05.08 |