View Pit Stop page for race #239 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 56.52 wpm (32.70 seconds elapsed during race) |
---|---|
Race Start | April 7, 2020 1:36:27pm UTC |
Race Finish | April 7, 2020 1:37:00pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. kiran11621 (25.78 wpm) |
Accuracy | 97.0% |
Points | 19.78 |
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") |