We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c52b49c commit 62dd539Copy full SHA for 62dd539
Python/find-the-number-of-possible-ways-for-an-event.py
@@ -13,7 +13,6 @@
13
for j in xrange(1, i+1):
14
NCR[i][j] = (NCR[i-1][j]+NCR[i-1][j-1])%MOD
15
DP[i][j] = (DP[i-1][j]*j+DP[i-1][j-1]*j)%MOD
16
-
17
POW = [[1]*(R+1) for _ in xrange(MAX_Y+1)]
18
for i in xrange(1, MAX_Y+1):
19
for j in xrange(1, R+1):
0 commit comments