We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d1ba93 commit 5a438cfCopy full SHA for 5a438cf
src/main/java/com/fishercoder/solutions/_1641.java
@@ -8,7 +8,7 @@ public static class Solution1 {
8
* I solved this problem using Math, no DP, recursion or backtracking techniques.
9
* Time: beat 100% submission consistently since it's O(n), essentialy it's O(1) because the contraints in the problem state: 1 <= n <= 50
10
* After writing out from n = 1 to 3, we can see the pattern.
11
- * Detailed reasoning to be seen in my youtube video on my channel: https://www.youtube.com/fishercoder.
+ * Detailed reasoning to be seen in my YouTube video on my channel: https://youtu.be/gdH4yfgfwiU
12
*/
13
public int countVowelStrings(int n) {
14
if (n == 1) {
0 commit comments