aadithebest (aadithebeast)

Race #72

View Pit Stop page for race #72 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 24.43 wpm (89.89 seconds elapsed during race)
Race Start June 29, 2025 1:48:31pm UTC
Race Finish June 29, 2025 1:50:00pm UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 9.77
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)