본문 바로가기

기억노트

검색하기
기억노트
프로필사진 진바니

  • 분류 전체보기 (19)
    • Programming (11)
      • Android Studio (0)
      • Gnuplot (2)
      • Linux (1)
      • VirtualBox + Ubuntu (5)
      • LaTeX (0)
      • Raspberry Pi (0)
      • Git (0)
      • Vim (2)
    • Coding Test 준비 (7)
      • Leetcode (2)
      • Programmers (5)
    • 필기 (0)
      • 영어 (0)
      • 논문 작성 관련 (0)
      • 궁금증 (0)
    • 자료 (0)
      • 논문 (0)
      • 발표자료 (0)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
일 월 화 수 목 금 토
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
  • vi/vim commands
  • 프로그래머스 실패율
  • apt autoremove
  • Leetcode 121
  • Python Imaging Library
  • vim 괄호 비활성화
  • git commit message
  • gnuplot csv
  • LaTeX figure
  • vim 찾아 바꾸기
  • Leetcode 70
  • 걸쳐서 그림 넣기
  • vim 치환
  • python3
  • Resolution Changing
  • VirtualBox
  • 프로그래머스
  • apt clean
  • 프로그래머스 체육복
  • linux prompt color
  • without nohup.out
  • tensorflow model load
  • vi/vim 명령어
  • linux bash
  • latex 첨자
  • Climbing Stairs
  • 프로그래머스 구명보트
  • csv x range
  • vim set noshowmatch
  • url reference
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록Climbing Stairs (1)

기억노트

[Leetcode/Python3] 70. Climbing Stairs

Code class Solution: def climbStairs(self, n: int) -> int: d = [0] * 46 d[1] = 1 d[2] = 2 for i in range(3, n+1): d[i] = d[i-1] + d[i-2] return d[n] Result Runtime: 41 ms Memory Usage: 14.5 MB

Coding Test 준비/Leetcode 2022. 1. 11. 03:20
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바

단축키

내 블로그

내 블로그 - 관리자 홈 전환
Q
Q
새 글 쓰기
W
W

블로그 게시글

글 수정 (권한 있는 경우)
E
E
댓글 영역으로 이동
C
C

모든 영역

이 페이지의 URL 복사
S
S
맨 위로 이동
T
T
티스토리 홈 이동
H
H
단축키 안내
Shift + /
⇧ + /

* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.