technojam / Ultimate_Algorithms_Repository

This is a collection of Data Structures and Algorithms
83 stars 166 forks source link

LCS[NEW Algorithm] #133

Closed Bijoy-007 closed 4 years ago

Bijoy-007 commented 4 years ago

Title or Name of the Algorithm LCS

Describe the algorithm A brief description of what your algorithm does LCS is a dynamic programming algorithm. Given 2 strings we've to find the longest common subsequence ex : A = "abbcdef" , B = "acddfcb" LCS = "adef"

Bijoy-007 commented 4 years ago

Can I work on this?