Halosd (halosd)

Race #2

View Pit Stop page for race #2 by halosdGhost race

View profile for Halosd (halosd)

Official speed 57.93 wpm (39.36 seconds elapsed during race)
Race Start August 22, 2023 2:45:32pm UTC
Race Finish August 22, 2023 2:46:11pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 22.20
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password