You are viewing a single comment's thread. Return to all comments →
import re S = input() k = input() R = list(re.finditer(f'(?={re.escape(k)})', S)) if R: for x in R: print((x.start(), x.start()+len(k)-1)) else: print((-1, -1))
Seems like cookies are disabled on this browser, please enable them to open this website
Re.start() & Re.end()
You are viewing a single comment's thread. Return to all comments →