Luis Alberto Delgado Pinto (luis_univ)

Race #27

View Pit Stop page for race #27 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

Official speed 28.13 wpm (78.07 seconds elapsed during race)
Race Start September 10, 2025 10:09:08pm UTC
Race Finish September 10, 2025 10:10:26pm UTC
Outcome No win (3 of 9)
Opponents 1. manu_233 (32.18 wpm)
2. souljin99 (28.61 wpm)
7. cris1310 (20.75 wpm)
Accuracy 96.0%
Points 11.25
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)