Solve: String Match
Imported By: Geoffrey Challen
/ Version: 2021.5.0
Given 2 String
s, return the number of the positions where they contain the same length 2 substring. So
"xxcaazz" and "xxbaaz" yields 3, since the "xx", "aa", and "az" substrings appear in the same place in both strings.
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.fun stringMatch(
first: String,
second: String,
): Int {
return 0
}