You are viewing a single comment's thread. Return to all comments →
This works with PyPy3. Thank you codersaad for the idea. This is the same code but without a function.
import re
n = int(input())
for _ in range(n): regex = input().strip() try: if re.search(r'(*|+|\?){2,}', regex): print("False") else: re.compile(regex) 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 →
This works with PyPy3. Thank you codersaad for the idea. This is the same code but without a function.
import re
n = int(input())
for _ in range(n): regex = input().strip() try: if re.search(r'(*|+|\?){2,}', regex): print("False") else: re.compile(regex) print("True") except re.error: print("False")