hack89 (hack89)

Race #32

View Pit Stop page for race #32 by hack89Ghost race

View profile for hack89 (hack89)

Official speed 39.15 wpm (56.09 seconds elapsed during race)
Race Start May 10, 2022 8:22:44pm UTC
Race Finish May 10, 2022 8:23:40pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 15.66
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)