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 |
Tags
- 코딩테스트
- 백준 18222
- 코테
- 리트코드
- 인텔리제이 에러
- 리트코드 1557
- java leetcode
- java 프로그래머스
- 백준 16935
- leetcode 1721
- BFS
- 프로그래머스 java
- 자바 5464
- 백준
- Java
- 분할정복
- 리트코드 자바
- leetcode
- 카카오
- 자바
- 그래프 자바
- daily challenge
- 자바 리트코드
- dfs
- 스택
- 스프링 에러
- 파이썬
- 프로그래머스
- DP
- 구현
Archives
- Today
- Total
목록파이썬 1137 (1)
레벨업 일지
[Java/Python] leetcode 1137. N-th Tribonacci Number
문제 https://leetcode.com/problems/n-th-tribonacci-number/description/ N-th Tribonacci Number - LeetCode N-th Tribonacci Number - The Tribonacci sequence Tn is defined as follows: T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0. Given n, return the value of Tn. Example 1: Input: n = 4 Output: 4 Explanation: T_3 = 0 + 1 + 1 = 2 T_4 = 1 + 1 leetcode.com 트라이보나치 수열 값을 구해서 리턴할 것. 알아야 할 개..
알고리즘/leetcode
2023. 1. 31. 00:01