Skip to content

Commit 67d6e22

Browse files
committed
Add newline at end of file
1 parent ad39058 commit 67d6e22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unique-paths/KwonNayeon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
class Solution:
2121
def uniquePaths(self, m: int, n: int) -> int:
2222
from math import comb
23-
return comb(m+n-2, n-1)
23+
return comb(m+n-2, n-1)

0 commit comments

Comments
 (0)