Skip to content

Commit 62dd539

Browse files
authored
Update find-the-number-of-possible-ways-for-an-event.py
1 parent c52b49c commit 62dd539

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/find-the-number-of-possible-ways-for-an-event.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
for j in xrange(1, i+1):
1414
NCR[i][j] = (NCR[i-1][j]+NCR[i-1][j-1])%MOD
1515
DP[i][j] = (DP[i-1][j]*j+DP[i-1][j-1]*j)%MOD
16-
1716
POW = [[1]*(R+1) for _ in xrange(MAX_Y+1)]
1817
for i in xrange(1, MAX_Y+1):
1918
for j in xrange(1, R+1):

0 commit comments

Comments
 (0)