Adam (adamjason804)

Race #8

View Pit Stop page for race #8 by adamjason804Ghost race

View profile for Adam (adamjason804)

Official speed 78.79 wpm (28.94 seconds elapsed during race)
Race Start October 10, 2025 3:51:30am UTC
Race Finish October 10, 2025 3:51:59am UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 30.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