Posted: Tue Nov 07, 2006 9:37 pm
I have problems with the example
Consider the string
This string is first cousin of abcde (you have to drop 5 (rstuv) of 10 characters).
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.
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.