Emily (erh4ua)

Race #24

View Pit Stop page for race #24 by erh4uaGhost race

View profile for Emily (erh4ua)

Official speed 34.76 wpm (53.16 seconds elapsed during race)
Race Start October 1, 2015 10:20:02pm UTC
Race Finish October 1, 2015 10:20:55pm UTC
Outcome No win (5 of 4)
Opponents 1. dsat (48.69 wpm)
2. yarrpirate (43.40 wpm)
3. oliver84 (43.29 wpm)
4. richardgomes7d (43.01 wpm)
Accuracy 89.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")