Karan Jain (karanjain18)

Race #119

View Pit Stop page for race #119 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 61.19 wpm (37.26 seconds elapsed during race)
Race Start November 28, 2019 12:18:35pm UTC
Race Finish November 28, 2019 12:19:12pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 23.46
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