Skip to content
New issue

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

Create Problem_44.cpp #499

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Oct 20, 2022

  1. Create Problem_44.cpp

    Given two strings s and t, return the number of distinct subsequences of s which equals t.
    
    A string's subsequence is a new string formed from the original string by deleting some (can be none) of the characters without disturbing the remaining characters' relative positions. (i.e., "ACE" is a subsequence of "ABCDE" while "AEC" is not).
    
    The test cases are generated so that the answer fits on a 32-bit signed integer.
    Happy-arora authored Oct 20, 2022
    Configuration menu
    Copy the full SHA
    81343c0 View commit details
    Browse the repository at this point in the history