You are viewing a single comment's thread. Return to all comments →
import re T = int(input().strip()) for i in range(T): S= input().strip() if any(op + '+' in S for op in ['*', '+', '?']): print("False") else: try: re.compile(S) print('True') except re.error: print('False')
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 →