Leo (leoh8r)

Race #4

View Pit Stop page for race #4 by leoh8rGhost race

View profile for Leo (leoh8r)

Official speed 81.67 wpm (27.92 seconds elapsed during race)
Race Start May 26, 2022 3:49:01am UTC
Race Finish May 26, 2022 3:49:29am UTC
Outcome Win (1 of 4)
Opponents 2. codeforces (76.24 wpm)
Accuracy 96.0%
Points 31.31
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