EquityDeadlock (equitydeadlock)

Race #8

View Pit Stop page for race #8 by equitydeadlockGhost race

View profile for EquityDeadlock (equitydeadlock)

Official speed 54.86 wpm (33.69 seconds elapsed during race)
Race Start May 6, 2022 3:28:16am UTC
Race Finish May 6, 2022 3:28:50am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.20
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")