View Pit Stop page for race #1 by jasssel — Ghost race
View profile for jaselsss (jasssel)
Official speed | 32.73 wpm (56.46 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:42:23am UTC |
Race Finish | June 6, 2025 1:43:19am UTC |
Outcome | No win (2 of 16) |
Opponents |
7. liz_mariela (28.15 wpm) 9. tocsky (27.06 wpm) 10. pedro_serrudo (25.85 wpm) 12. sarai_vega012 (22.05 wpm) 13. jhulmab (21.98 wpm) |
Accuracy | 94.0% |
Points | 11.45 |
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") |