Wreckium626 (andrewkcleeuc)

Race #20

View Pit Stop page for race #20 by andrewkcleeucGhost race

View profile for Wreckium626 (andrewkcleeuc)

Official speed 63.60 wpm (35.85 seconds elapsed during race)
Race Start September 20, 2025 8:17:16pm UTC
Race Finish September 20, 2025 8:17:52pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 24.38
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