We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc3a02 commit 1822813Copy full SHA for 1822813
Python/count-sorted-vowel-strings.py
@@ -16,4 +16,4 @@ def nCr(n, r): # Time: O(n), Space: O(1)
16
c //= k
17
return c
18
19
- return nCr(n+4, 4) # H(5, n) = nCr(n+5-1, n) = nCr(n+4, 4)
+ return nCr(n+4, 4) # H(5, n) = C(n+5-1, n) = C(n+4, 4)
0 commit comments