Skip to content

Commit 5a438cf

Browse files
update comment for 1641
1 parent 3d1ba93 commit 5a438cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_1641.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public static class Solution1 {
88
* I solved this problem using Math, no DP, recursion or backtracking techniques.
99
* 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
1010
* 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.
11+
* Detailed reasoning to be seen in my YouTube video on my channel: https://youtu.be/gdH4yfgfwiU
1212
*/
1313
public int countVowelStrings(int n) {
1414
if (n == 1) {

0 commit comments

Comments
 (0)