aadithebest (aadithebeast)

Race #120

View Pit Stop page for race #120 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 22.09 wpm (99.41 seconds elapsed during race)
Race Start July 4, 2025 2:53:03pm UTC
Race Finish July 4, 2025 2:54:43pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 8.83
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)