Amit Ho (vkij)

Race #2

View Pit Stop page for race #2 by vkijGhost race

View profile for Amit Ho (vkij)

Official speed 93.74 wpm (24.32 seconds elapsed during race)
Race Start May 24, 2023 6:47:27pm UTC
Race Finish May 24, 2023 6:47:51pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 35.93
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