Arijit (arijit91)

Race #9

View Pit Stop page for race #9 by arijit91Ghost race

View profile for Arijit (arijit91)

Official speed 44.16 wpm (41.85 seconds elapsed during race)
Race Start January 22, 2014 8:24:50am UTC
Race Finish January 22, 2014 8:25:31am UTC
Outcome No win (4 of 3)
Opponents 2. sujeetgholap (56.13 wpm)
3. dev344 (44.65 wpm)
Accuracy 90.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")