Run-time error на задача 7. Hideout от архива: More Exercises: Strings and Regular Expressions
Здравейте!
Моля за съдействие за задача 7 Hideout. В Judge получавам грешка run-time error на 4-тия тест и не успявам да открия причината.
Линк към Judge: https://judge.softuni.org/Contests/Practice/Index/585#6
Моето решение:
import re
text = input()
while True:
clue = input()
searched_character, minimum_count = clue.split(" ")[0], int(clue.split(" ")[1])
pattern = fr"[{searched_character}]{{{minimum_count},}}"
matches = re.search(pattern, text)
if matches:
size = len(matches.group())
index = text.index(matches.group())
print(f"Hideout found at index {index} and it is with size {size}!")
break
Благодаря на всеки, който ще отдели време!
Много благодаря, Мартин!