Code: Select all
abcde (length 5)
mnopqrstuvab (length 12)
Code: Select all
rstuvabcde (length 10)
But it's first cousin of mnopqrstuvab, too. (The common part ist 'rstuvab'.)
Drop mnopq of mnopqrstuvab (5 of 12 characters) and drop cde of rstuvabcde (3 of 10 characters).
So the strings are second cousins.
Is this true? I got WA untill now.