Karan Jain (karanjain18)

Race #334

View Pit Stop page for race #334 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 69.75 wpm (32.69 seconds elapsed during race)
Race Start May 25, 2020 5:46:53pm UTC
Race Finish May 25, 2020 5:47:26pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 26.74
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