Jhonny Condori (jhonny_ct)

Race #35

View Pit Stop page for race #35 by jhonny_ctGhost race

View profile for Jhonny Condori (jhonny_ct)

Official speed 26.96 wpm (68.55 seconds elapsed during race)
Race Start June 30, 2025 1:25:35am UTC
Race Finish June 30, 2025 1:26:44am UTC
Outcome No win (7 of 8)
Opponents 1. beltran_tarqui (36.85 wpm)
3. samiraarancibia123426 (33.09 wpm)
5. sharick_chungara (30.45 wpm)
6. liz_mariela (27.49 wpm)
8. nessa2 (26.34 wpm)
Accuracy 93.0%
Points 9.44
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")