(sidd_)

Race #169

View Pit Stop page for race #169 by sidd_Ghost race

View profile for (sidd_)

Official speed 127.02 wpm (14.55 seconds elapsed during race)
Race Start July 20, 2019 8:29:22pm UTC
Race Finish July 20, 2019 8:29:37pm UTC
Outcome Win (1 of 6)
Opponents 2. mako640 (108.35 wpm)
3. keegant (81.43 wpm)
4. spondulix (73.39 wpm)
5. storm (69.91 wpm)
6. hyper_racer (68.38 wpm)
Accuracy 99.0%
Points 44.46
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")