View Pit Stop page for race #20 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
Official speed | 21.06 wpm (87.75 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 12:41:18am UTC |
Race Finish | June 15, 2025 12:42:46am UTC |
Outcome | No win (14 of 19) |
Opponents |
5. fa1progra (32.30 wpm) 7. fanor (28.25 wpm) |
Accuracy | 92.0% |
Points | 7.37 |
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") |