For example:
String 1: AGGCCT
|| | |
String 2: AGCCAT
These two strings are identical at 4 positions, so the function I want would return 4.
Is there a clever (i.e., fast) method for doing this, other than the obvious method of iterating through both strings at the same time?
Thanks! Uri