Rubix (rubix_av)

Race #2

View Pit Stop page for race #2 by rubix_avGhost race

View profile for Rubix (rubix_av)

Official speed 54.84 wpm (33.70 seconds elapsed during race)
Race Start July 7, 2023 2:57:57am UTC
Race Finish July 7, 2023 2:58:31am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 19.19
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")