Boi (disnoob)

Race #1

View Pit Stop page for race #1 by disnoobGhost race

View profile for Boi (disnoob)

Official speed 88.72 wpm (25.70 seconds elapsed during race)
Race Start July 14, 2023 6:57:42am UTC
Race Finish July 14, 2023 6:58:08am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 34.01
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