Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upLongest Common Substring #1718
Longest Common Substring #1718
Comments
Can I take this? |
Kindly assign this to me. |
I'll be happy to contribute code for the problem in Java or C++. Could you assign the problem to me? |
Can you assign this issue to me , I can contribute and write the code in java. |
Can you assign this to me. |
Simple implementation for Longest Common Substring TheAlgorithms#1718
Can you please assign this to me? |
The Longest Common Substring is an approach in which we find out the the Longest Common Substring from the two input strings
Eg:-
s1="abbaf"
s2="abcdef"
The result will be 2 as the length of the Longest Common Substring which is "ab" is 2