We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
# Basic invalid pattern check
is_invalid = any(rep in S for rep in invalid_repeats)
if is_invalid:
print("False")
continue
try:
re.compile(S)
print("True")
except re.error:
print("False")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Incorrect Regex
You are viewing a single comment's thread. Return to all comments →
Try Like this
import re
T = int(input()) invalid_repeats = ['++', '**', '??', '+', '+', '?', '?', '+?', '??']
for _ in range(T): S = input().strip()