Md (imti_23)

Race #3

View Pit Stop page for race #3 by imti_23Ghost race

View profile for Md (imti_23)

Official speed 22.08 wpm (83.70 seconds elapsed during race)
Race Start June 20, 2023 9:00:47am UTC
Race Finish June 20, 2023 9:02:11am UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 7.73
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")