Aashutosh (aashutoshrestha)

Race #3

View Pit Stop page for race #3 by aashutoshresthaGhost race

View profile for Aashutosh (aashutoshrestha)

Official speed 60.52 wpm (37.67 seconds elapsed during race)
Race Start July 25, 2023 6:29:47am UTC
Race Finish July 25, 2023 6:30:25am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 23.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