Byte Pattern Search
A file can be represented as a list of bytes, and sometimes you need to find a smaller byte fragment inside it. Given data and pattern, return the index where pattern first appears as a contiguous part of data. If the pattern is not found, return -1. An empty pattern is considered found at index 0.
Примеры
Ввод
[1, 2, 3, 4, 5], [3, 4]Вывод
2Ввод
[1, 2, 3], [4]Вывод
-1Ввод
[5, 5, 5, 5], [5, 5]Вывод
0Нужно реализовать
def find_byte_pattern(data, pattern):
Теги
stringstwo-pointershashmap
Logga in för att se historik över inskick
Logga inLogga in för att använda AI-mentorn
Logga inTests12
Visible tests
Dolt test 7
Dolt test 8
Dolt test 9
Dolt test 10
Dolt test 11
Dolt 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