spondunoob (spondulix)

Race #383

View Pit Stop page for race #383 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 101.63 wpm (18.18 seconds elapsed during race)
Race Start August 28, 2019 11:43:31pm UTC
Race Finish August 28, 2019 11:43:49pm UTC
Outcome Win (1 of 3)
Opponents 2. arc_sec (96.66 wpm)
Accuracy 99.0%
Points 35.57
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")