Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Stressful Subject by martin_b
import re
def is_stressful(s):
return s.isupper() or s.endswith('!!!') or any(re.search("+\W*".join(w), s, re.I) for w in ("help", "asap", "urgent"))
May 9, 2019
Comments: