반응형
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 10250
- 백준 막대기
- 큐
- Python 20001
- til
- softeer
- boj 2309
- 백준 카드1
- 개발자 취업
- 백준 2309
- 파이썬
- 코딩테스트 준비
- 백준
- leetcode 2405
- BFS
- Python
- 구현
- python 10989
- 99클럽
- 항해99
- python 14503
- 백준 팰린드롬수
- leetcode
- 99항해
- python 1259
- BOJ
- 스택
- 일곱 난쟁이
- python 2309
- 프로그래머스
Archives
- Today
- Total
목록2024/06/07 (1)
동까의 코딩
[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
문제 풀이/99클럽
2024. 6. 7. 22:35