ProAlgos / ProAlgos-Cpp

C++ implementations of well-known (and some rare) algorithms, while following good software development practices
MIT License
507 stars 363 forks source link

add "longest common subsequence in the given strings" problem #421

Closed dhnanj2 closed 2 years ago

dhnanj2 commented 2 years ago

The problem is standard-classical DP problem to determine the length of the longest common subsequence in the given pair strings. know more about the problem here : https://www.geeksforgeeks.org/longest-common-subsequence-dp-4/ P.S. : I have read the contribution guidelines and would like to contribute and close this issue P.S. : I searched for the above problem in DP section but later found it in strings section, I'm sorry for that.