View Pit Stop page for race #3 by nikitsaraf — Ghost race
View profile for Nikit (nikitsaraf)
Official speed | 48.82 wpm (37.85 seconds elapsed during race) |
---|---|
Race Start | January 16, 2015 12:02:40pm UTC |
Race Finish | January 16, 2015 12:03:18pm UTC |
Outcome | Win (1 of 4) |
Opponents |
2. hirak (30.06 wpm) 3. ankit2313 (25.72 wpm) |
Accuracy | 94.0% |
Points | 0.00 |
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") |