We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
leetcode/solution/1900-1999/1955.Count Number of Special Subsequences/README.md
Lines 95 to 102 in 6c6cb55
It should be
$$ \begin{aligned} f[i][0] &= 2 \times f[i - 1][0] + 1, \quad nums[i] = 0 \\ f[i][1] &= f[i-1][0] + 2 \times f[i - 1][1], \quad nums[i] = 1 \\ f[i][2] &= f[i-1][1] + 2 \times f[i - 1][2], \quad nums[i] = 2 \\ f[i][j] &= f[i-1][j], \quad nums[i] \neq j \end{aligned} $$
The text was updated successfully, but these errors were encountered:
fix: update solutions to lc problem: No.1955
9ee1c82
close #4256
1ea1077
Thanks for the feedback! We've fixed this issue in PR #4257.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
leetcode/solution/1900-1999/1955.Count Number of Special Subsequences/README.md
Lines 95 to 102 in 6c6cb55
It should be
The text was updated successfully, but these errors were encountered: