```
indexOfFirstNonmatching("abcd","abcd") == 0 
indexOfFirstNonmatching("abcd","abdc") == 3
```
what is a fast way to do this with strings of 50-1000 characters?

Reply via email to