aadithebest (aadithebeast)

Race #12

View Pit Stop page for race #12 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 20.76 wpm (105.78 seconds elapsed during race)
Race Start June 17, 2025 6:55:10am UTC
Race Finish June 17, 2025 6:56:56am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 8.31
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)