스파르타코딩클럽/활동 내용
[스파르타] 99클럽 2기 코테스터디 19일차 TIL / leet 1641
신선한 스타트
2024. 6. 7. 16:37
Leetcode: 1641. Count Sorted Vowel Strings (링크)
class Solution:
def countVowelStrings(self, n: int) -> int:
return ((n+4)*(n+3)*(n+2)*(n+1))//24