DSA icon indicating copy to clipboard operation
DSA copied to clipboard

Print Longest Common Subsequence (CPP)

Open pranil-19 opened this issue 4 years ago • 2 comments

(DP Problem Using C++)

Given two strings X and Y of lengths m and n respectively, PRINT LCS of strings X and Y Example 1 Input: X = aggtab, Y = gxtxayb Output: gtab Explanation: Longest Common Subsequence would be gtab which is of length 4

// I wanna contribute this to DP folder , Please assign this to me

pranil-19 avatar Oct 07 '21 17:10 pranil-19

Hey, please assign me this issue.

Saloni6111 avatar Oct 23 '21 17:10 Saloni6111

I have solved this dsa question. Please assign me I have solved this problem in Leetcode using CPP

Sourajyoti1234 avatar Oct 29 '21 21:10 Sourajyoti1234