Method LargestOverlap
LargestOverlap(Word, Word)
Find the largest overlap shared between two words. An overlap is a sufffix of the left word
that is equal to a prefix of the right word. This operation is not symmetric.
public static Word LargestOverlap(Word s1, Word s2)
Parameters
Returns
- Word
The biggest overlap shared between the two words.