Kayega (briankayega)

Race #326

View Pit Stop page for race #326 by briankayegaGhost race

View profile for Kayega (briankayega)

Official speed 64.10 wpm (35.57 seconds elapsed during race)
Race Start February 13, 2024 3:59:17pm UTC
Race Finish February 13, 2024 3:59:53pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 24.57
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