Feynex (imhidayat)

Race #4

View Pit Stop page for race #4 by imhidayatGhost race

View profile for Feynex (imhidayat)

Official speed 67.04 wpm (34.01 seconds elapsed during race)
Race Start December 22, 2022 9:36:23pm UTC
Race Finish December 22, 2022 9:36:57pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 25.70
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