Iman Ranjbar (imanranjbar)

Race #35

View Pit Stop page for race #35 by imanranjbarGhost race

View profile for Iman Ranjbar (imanranjbar)

Official speed 43.35 wpm (42.63 seconds elapsed during race)
Race Start April 21, 2023 9:51:28am UTC
Race Finish April 21, 2023 9:52:10am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 15.17
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")