SIDD ON TRAIN (1a2a)

Race #5

View Pit Stop page for race #5 by 1a2aGhost race

View profile for SIDD ON TRAIN (1a2a)

Official speed 106.95 wpm (17.28 seconds elapsed during race)
Race Start November 23, 2018 10:00:49pm UTC
Race Finish November 23, 2018 10:01:07pm UTC
Outcome Win (1 of 3)
Opponents 2. chakk (101.76 wpm)
3. notapplicable (76.77 wpm)
Accuracy 97.0%
Points 37.43
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")