79763014

Date: 2025-09-12 13:42:59
Score: 2
Natty:
Report link

Is this what you're looking for?

import re
s = "ha-haa-ha-haa"
m = re.match(r"(ha)-(haa)-\1-\2", s)
print(m.group())

This outputs

ha-haa-ha-haa

as expected

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this
  • High reputation (-1):
Posted by: JRiggles