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 c6c18fc commit d31ded8Copy full SHA for d31ded8
Distinct Subsequences.py
@@ -10,7 +10,7 @@ def numDistinct(self, S, T):
10
return f[m]
11
12
class Solution:
13
- ''' The alternative solution is to use a 2D array.
+ ''' The original solution is to use a 2D array.
14
'''
15
def numDistinct(self, S, T):
16
ways = [[0 for j in range(len(S) + 1)] for i in range(len(T) + 1)]
0 commit comments