馃摑 New Problem Idea
Problem Title:
Determine the maximum length of a subsequence of x that is also a substring of y
Brief Statement:
Find the maximum length of a subsequence from string x that is also a substring of string y.
Return the length of this longest subsequence.
Topic of this Problem
- String
- Subsequence
- Two pointer
- Dynamic Programming
馃摑 New Problem Idea
Problem Title:
Determine the maximum length of a subsequence of x that is also a substring of y
Brief Statement:
Find the maximum length of a subsequence from string x that is also a substring of string y.
Return the length of this longest subsequence.
Topic of this
Problem