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
- 웹팩
- 컨테이너
- 프로그래머스
- 브라우저
- 프론트엔드
- 타입스크립트
- 코딩테스트
- vue3
- 자료구조
- 연결리스트
- GraphQL
- 해시테이블
- 이진탐색
- APOLLO
- 포인터
- 스택
- RT scheduling
- C
- alexnet
- 배열
- 프로세스
- 릿코드
- 자바스크립트
- 큐
- cors
- RxJS
- pytorch
- 알고리즘
- Machine Learning
- 연결 리스트
Archives
- Today
- Total
프린세스 다이어리
[LeetCode] Climbing Stairs - 자바스크립트 풀이 본문
728x90
1. 접근 방법
(1) 힌트에 이전 피보나치 문제처럼 풀라고 해서 재귀로 풀었더니 시간 초과가 났다(???). 그래서 DP로 풀었다.
(2) 베이스 케이스를 써 준다.
stairs[1] = 1;
stairs[2] = 2;
(3) for문을 돌면서 점화식을 이용해 연산해준다.
for (let i = 3; i <= n; i++) {
stairs[i] = stairs[i - 2] + stairs[i - 1];
}
2. 전체 해답
/**
* @param {number} n
* @return {number}
*/
var climbStairs = function(n) {
let stairs = new Array(n).fill(0);
stairs[1] = 1;
stairs[2] = 2;
for (let i = 3; i <= n; i++) {
stairs[i] = stairs[i - 2] + stairs[i - 1];
}
return stairs[n];
};
728x90
'자료구조, 알고리즘' 카테고리의 다른 글
[LeetCode] K-th Symbol in Grammar - 자바스크립트 풀이 (0) | 2021.12.12 |
---|---|
[LeetCode] Merge Two Sorted Lists - 자바스크립트 풀이 (0) | 2021.12.07 |
[LeetCode] Fibonacci Number - 자바스크립트 풀이 (0) | 2021.12.05 |
[LeetCode] Pascal's Triangle II - 자바스크립트 풀이 (0) | 2021.12.05 |
[LeetCode] Search in a Binary Search Tree - 자바스크립트 풀이 (0) | 2021.11.30 |
Comments