Daniel (dsat)

Race #21

View Pit Stop page for race #21 by dsatGhost race

View profile for Daniel (dsat)

Official speed 61.44 wpm (30.08 seconds elapsed during race)
Race Start September 22, 2015 10:19:46pm UTC
Race Finish September 22, 2015 10:20:16pm UTC
Outcome Win (1 of 2)
Opponents 2. yamileth (60.94 wpm)
3. arturojreal (46.23 wpm)
4. iceryda4047 (42.19 wpm)
5. yarrpirate (39.17 wpm)
6. gersch (29.86 wpm)
7. sanzmaxxon (27.44 wpm)
Accuracy 95.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")