You are viewing a single comment's thread. Return to all comments →
Accepted solution for python 2
import re for _ in range(int(raw_input())): try: re.compile(raw_input().strip()) 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 →
Accepted solution for python 2