Yi_Sun (yi_sun)

Race #11

View Pit Stop page for race #11 by yi_sunGhost race

View profile for Yi_Sun (yi_sun)

Official speed 65.99 wpm (34.55 seconds elapsed during race)
Race Start April 1, 2025 4:14:49pm UTC
Race Finish April 1, 2025 4:15:24pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 25.29
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