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 ad39058 commit 67d6e22Copy full SHA for 67d6e22
unique-paths/KwonNayeon.py
@@ -20,4 +20,4 @@
20
class Solution:
21
def uniquePaths(self, m: int, n: int) -> int:
22
from math import comb
23
- return comb(m+n-2, n-1)
+ return comb(m+n-2, n-1)
0 commit comments