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
PostgreSQLv16

Hier verschijnt het resultaat van je code

Tests12
Visible tests
Verborgen test 7
Verborgen test 8
Verborgen test 9
Verborgen test 10
Verborgen test 11
Verborgen 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