반응형
Recent Posts
Notice
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
- 백준 팰린드롬수
- python 14503
- python 2309
- 일곱 난쟁이
- BOJ
- 프로그래머스
- leetcode
- 스택
- 개발자 취업
- til
- Python
- Python 20001
- python 10250
- python 1259
- 구현
- 항해99
- 백준 카드1
- 백준
- BFS
- softeer
- 99항해
- 백준 막대기
- 코딩테스트 준비
- leetcode 2405
- 백준 2309
- python 10989
- 큐
- 99클럽
- 파이썬
- boj 2309
Archives
- Today
- Total
동까의 코딩
[99클럽] 18일차 TIL 본문
반응형
https://leetcode.com/problems/count-sorted-vowel-strings/submissions/1280576421/
class Solution:
f = {}
def countVowelStrings(self, n):
return self.nHr(5, n)
def nHr(self, n, r):
return self.fact(n+r-1) // self.fact(n-1) // self.fact(r)
def fact(self, n):
if n <= 1:
return 1
elif n not in self.f:
self.f[n] = n * self.fact(n-1)
return self.f[n]
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 20일차 TIL (0) | 2024.06.09 |
---|---|
[99클럽] 19일차 TIL (0) | 2024.06.08 |
[99클럽] 17일차 TIL (0) | 2024.06.06 |
[99클럽] 16일차 TIL (0) | 2024.06.05 |
[99클럽] 15일차 TIL (0) | 2024.06.04 |