Skip to content

Commit 110bf9a

Browse files
authored
Update count-all-valid-pickup-and-delivery-options.py
1 parent df31f67 commit 110bf9a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/count-all-valid-pickup-and-delivery-options.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ def countOrders(self, n):
1010
MOD = 10**9+7
1111
result = 1
1212
for i in reversed(xrange(2, 2*n+1, 2)):
13-
print i
1413
result = result * i*(i-1)//2 % MOD
1514
return result

0 commit comments

Comments
 (0)