Sujeet (sujeetgholap)

Race #3

View Pit Stop page for race #3 by sujeetgholapGhost race

View profile for Sujeet (sujeetgholap)

Official speed 43.67 wpm (42.32 seconds elapsed during race)
Race Start January 22, 2014 8:12:47am UTC
Race Finish January 22, 2014 8:13:29am UTC
Outcome No win (3 of 3)
Opponents 1. arijit91 (69.42 wpm)
2. dev344 (49.96 wpm)
Accuracy 88.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")