Md. Mamun (mamun_sheikh)

Race #18

View Pit Stop page for race #18 by mamun_sheikhGhost race

View profile for Md. Mamun (mamun_sheikh)

Official speed 43.01 wpm (42.97 seconds elapsed during race)
Race Start June 16, 2023 5:00:14pm UTC
Race Finish June 16, 2023 5:00:57pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 15.06
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")