Skip to content
Paras Gupta

Jan 17 - Daily Programming Diary

Diary, Programming1 min read

20:00

Solving today's Leetcode challenge

count-sorted-vowel-strings.cpp
1int countVowelStrings(int n) {
2 return (n + 1) * (n + 2) * (n + 3) * (n + 4) / 24;
3}

Ok, bye!

EOD Checklist

  • Leetcode January Challenge
  • Raahee
  • This blog
© 2022 by Paras Gupta. All rights reserved.
Theme by LekoArts