Luis Alberto Delgado Pinto (luis_univ)

Race #36

View Pit Stop page for race #36 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

Official speed 32.61 wpm (69.92 seconds elapsed during race)
Race Start October 13, 2025 1:47:49am UTC
Race Finish October 13, 2025 1:48:59am UTC
Outcome Win (1 of 6)
Opponents 2. jhony99 (32.18 wpm)
3. nessa2 (32.06 wpm)
5. iverjoel (25.34 wpm)
Accuracy 94.0%
Points 12.50
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