Matching String Pairs

This exercise shows how to compare two strings by small chunks instead of single characters. Write a function string_match that takes strings a and b and counts the positions where both strings have the same two-character substring at the same index. Only check positions where a full two-character slice exists in both strings.

Примеры

Ввод
"xxcaazz", "xxbaaz"
Вывод
3
Ввод
"abc", "abc"
Вывод
2
Ввод
"abc", "axc"
Вывод
0

Нужно реализовать

def string_match(a: str, b: str) -> int:

Теги

stringssliding-window
PostgreSQLv16

Čia bus kodo vykdymo rezultatas

Tests12
Visible tests
Paslėptas testas 7
Paslėptas testas 8
Paslėptas testas 9
Paslėptas testas 10
Paslėptas testas 11
Paslėptas testas 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid