Cristian Tacuri (cris1310)

Race #17

View Pit Stop page for race #17 by cris1310Ghost race

View profile for Cristian Tacuri (cris1310)

Official speed 22.33 wpm (82.76 seconds elapsed during race)
Race Start June 15, 2025 12:41:18am UTC
Race Finish June 15, 2025 12:42:41am UTC
Outcome No win (12 of 19)
Opponents 5. fa1progra (32.30 wpm)
7. fanor (28.25 wpm)
10. mau_r123 (26.62 wpm)
14. magali_alanoca (21.06 wpm)
Accuracy 93.0%
Points 7.81
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")