Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 289 Bytes

File metadata and controls

4 lines (3 loc) · 289 Bytes

Find-substring-algorithm

Given a list of string objects, this algorithm calculates and shows the most common substring found in all its components. It uses set() structure instead of "in" operator.

"in" operator, internally uses a "for" loop. So this algorithm improves the spent time.