SAIF (saifhhasan)

Race #5

View Pit Stop page for race #5 by saifhhasanGhost race

View profile for SAIF (saifhhasan)

Official speed 62.60 wpm (29.52 seconds elapsed during race)
Race Start December 24, 2014 9:22:14am UTC
Race Finish December 24, 2014 9:22:43am UTC
Outcome No win (3 of 3)
Opponents 1. darshankapashi (65.93 wpm)
Accuracy 92.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")