본문 바로가기

코린이의 소소한 공부노트

검색하기
코린이의 소소한 공부노트
프로필사진 무지맘

  • 분류 전체보기 (1234)
    • Java (109)
    • Back-End (55)
      • Algorithm (36)
      • Data Structure (8)
    • 코딩테스트 풀이 (994)
      • JAVA (963)
      • SQL (31)
    • 먹방일기 (58)
    • Python (14)
    • Deep Learning (4)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
일 월 화 수 목 금 토
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
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록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
[LeetCode/Easy] 509. Fibonacci Number

1. Input 1) 정수 n 2. Output 1) F(n)을 계산한 결과 2) F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n은 2 이상의 정수) 3. Constraint 1) 0

코딩테스트 풀이/JAVA 2022. 12. 1. 23:58
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바