Alex Beltran T. (beltran_tarqui)

Race #340

View Pit Stop page for race #340 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 38.98 wpm (56.34 seconds elapsed during race)
Race Start July 2, 2025 4:47:20pm UTC
Race Finish July 2, 2025 4:48:17pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 15.59
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)