Solomon (solomonarsnova)

Race #16

View Pit Stop page for race #16 by solomonarsnovaGhost race

View profile for Solomon (solomonarsnova)

Official speed 35.31 wpm (62.19 seconds elapsed during race)
Race Start July 6, 2025 5:33:55am UTC
Race Finish July 6, 2025 5:34:57am UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 14.12
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)