Cristian Tacuri (cris1310)

Race #31

View Pit Stop page for race #31 by cris1310Ghost race

View profile for Cristian Tacuri (cris1310)

Official speed 22.71 wpm (96.70 seconds elapsed during race)
Race Start September 29, 2025 12:52:02am UTC
Race Finish September 29, 2025 12:53:39am UTC
Outcome No win (3 of 8)
Accuracy 93.0%
Points 9.08
Text #10005 (Length: 183 characters)

class URLLister(SGMLParser): def reset(self): SGMLParser.reset(self) self.urls = [] def start_a(self, attrs): href = [v for k, v in attrs if k=='href'] if href: self.urls.extend(href)