Vivek Jain (nguye205)

Race #3

View Pit Stop page for race #3 by nguye205Ghost race

View profile for Vivek Jain (nguye205)

Official speed 39.85 wpm (55.11 seconds elapsed during race)
Race Start April 26, 2022 7:57:34pm UTC
Race Finish April 26, 2022 7:58:29pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 15.94
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)