Byte Pattern Counter
In low-level work, a file is often treated as a simple list of bytes. Given buffer and pattern, count how many times pattern appears in buffer as a contiguous fragment. Matches may overlap, so after finding one match you cannot simply jump past it. If the pattern is not found, return 0.
Примеры
Ввод
[255, 20, 133, 1, 255, 20, 133], [255, 20, 133]Вывод
2Ввод
[0, 0, 0, 0], [0, 0]Вывод
3Ввод
[1, 2, 3], [4]Вывод
0Нужно реализовать
def memmem_count(buffer, pattern):
Теги
arraylistssliding-window
Přihlaste se, abyste viděli historii odevzdání
Přihlásit sePřihlaste se, abyste mohli použít AI mentora
Přihlásit seTests12
Visible tests
Skrytý test 7
Skrytý test 8
Skrytý test 9
Skrytý test 10
Skrytý test 11
Skrytý test 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