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
Given lowercase alphabet strings a, b, and c return whether there's any way of obtaining c by merging characters in order from a and b.
Constraints:
0 ≤ n ≤ 1,000 where n is the length of a 0 ≤ m ≤ 1,000 where m is the length of b 0 ≤ k ≤ 1,000 where k is the length of c
Example 1 Input:- a = "abc" b = "def" c = "abdefc" Output:- true
https://binarysearch.com/problems/Zipped-String
Tags for the question(eg - Array, Basic, Stack, etc.) - Dynamic Programming String
The text was updated successfully, but these errors were encountered:
Please assign me this @akshitagupta15june
Sorry, something went wrong.
Please add label hacktoberfest-accepted
Hey @TiwariPreeti @akshitagupta15june Kindly assign this problem to me.
No branches or pull requests
Given lowercase alphabet strings a, b, and c return whether there's any way of obtaining c by merging characters in order from a and b.
Constraints:
0 ≤ n ≤ 1,000 where n is the length of a
0 ≤ m ≤ 1,000 where m is the length of b
0 ≤ k ≤ 1,000 where k is the length of c
Example 1
Input:-
a = "abc"
b = "def"
c = "abdefc"
Output:-
true
https://binarysearch.com/problems/Zipped-String
Tags for the question(eg - Array, Basic, Stack, etc.) -
Dynamic Programming
String
The text was updated successfully, but these errors were encountered: