Top "Longest-substring" questions

Longest Substring is a classic computer science problem: given two strings, find the common strings, then return the string(s) in common with the greatest length.

Longest common substring from more than two strings

I'm looking for a Python library for finding the longest common sub-string from a set of strings. There are two …

python string longest-substring
Java implementation for longest common substring of n strings

I need to find the longest common substring of n strings and use the result in my project. Is there …

java longest-substring
Index and length must refer to a location within the string.?

My input strings are inputData = "99998UNKNOWN" inputData = "01000AMEBACIDE/TRICHOM/ANTIBAC 1" inputData = "34343AMEBACIDE/TRICHOM/ANTIBACSADWA1" ID = inputData.Substring(0,5); Name = inputData.Substring(5,30); …

substring c#-2.0 longest-substring
Python: Length of longest common subsequence of lists

Is there a built-in function in python which returns a length of longest common subsequence of two lists? a=[1,2,6,5,4,8] b=[2,1,6,5,4,4] …

python list longest-substring
How to print all possible solutions for Longest Common subsequence

I want to print all the possible solutions to LCS problem. The two strings abcbdab and bdcaba should print following 3 …

lcs longest-substring