aadithebest (aadithebeast)

Race #43

View Pit Stop page for race #43 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 29.03 wpm (75.65 seconds elapsed during race)
Race Start June 26, 2025 9:04:47am UTC
Race Finish June 26, 2025 9:06:02am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 11.61
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)