Shahriar Kabir (sk123456)

Race #3

View Pit Stop page for race #3 by sk123456Ghost race

View profile for Shahriar Kabir (sk123456)

Official speed 44.87 wpm (41.19 seconds elapsed during race)
Race Start June 6, 2023 11:16:02am UTC
Race Finish June 6, 2023 11:16:43am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 15.70
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")