Yi_Sun (yi_sun)

Race #3

View Pit Stop page for race #3 by yi_sunGhost race

View profile for Yi_Sun (yi_sun)

Official speed 59.12 wpm (37.14 seconds elapsed during race)
Race Start March 21, 2025 3:40:01pm UTC
Race Finish March 21, 2025 3:40:38pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 23.65
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)