N/A (notapplicable)

Race #3

View Pit Stop page for race #3 by notapplicableGhost race

View profile for N/A (notapplicable)

Official speed 76.77 wpm (24.07 seconds elapsed during race)
Race Start November 23, 2018 10:00:49pm UTC
Race Finish November 23, 2018 10:01:13pm UTC
Outcome No win (3 of 3)
Opponents 1. 1a2a (106.95 wpm)
2. chakk (101.76 wpm)
Accuracy 96.0%
Points 26.87
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")