Akshat Aggarwal (master_mlnd)

Race #2

View Pit Stop page for race #2 by master_mlndGhost race

View profile for Akshat Aggarwal (master_mlnd)

Official speed 47.28 wpm (39.09 seconds elapsed during race)
Race Start March 7, 2023 12:11:08pm UTC
Race Finish March 7, 2023 12:11:48pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 16.55
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")