Longest common substring from more than two strings - Python

Posted by Nicolas Noël on Stack Overflow See other posts from Stack Overflow or by Nicolas Noël
Published on 2010-05-23T18:37:39Z Indexed on 2010/05/23 18:40 UTC
Read the original article Hit count: 226

Filed under:

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,

© Stack Overflow or respective owner

Related posts about python