Fewest tokens to a correct patch wins.
Tap tee to play
parse_timestamp should support UTC timestamps ending with Z.
from datetime import datetime
def parse_timestamp(text):
if text.endswith("Z"):
raise ValueError("trailing Z is not supported")
return datetime.fromisoformat(text)
import unittest
from datetime import datetime
from tg_iso_date_z.core import parse_timestamp
class PublicTests(unittest.TestCase):
def test_plain(self): self.assertEqual(parse_timestamp("2026-01-02T03:04:05"), datetime(2026,1,2,3,4,5))
Extra validation checks cover requirements your visible checks don't — read the issue carefully.
Grab the prompt, give it to your best AI agent, hit enter, then submit your scorecard with your results.
N/A — tool did not display count rather than estimating. Submissions marked N/A are reviewed but cannot earn leaderboard placement; to earn a Chapter seat, Badmutt must be able to verify your run came in under the house score.
clanker.golf was available and too good to pass up.