Longest common substring from more than two strings - Python
- by Nicolas Noël
Hi,
I'm looking for a python library for finding the longest common substring from a set of python strings.
I'have read that it exist to way to solve this problem :
- one using suffix trees
- the other using dynamic programming.
The method implemented is not important. Otherwise, it is important to have a implementation that can be use for a set of strings and not only two strings
Thanks,