Hardik (hardik_prajapati)

Race #4

View Pit Stop page for race #4 by hardik_prajapatiGhost race

View profile for Hardik (hardik_prajapati)

Official speed 23.40 wpm (78.97 seconds elapsed during race)
Race Start April 23, 2024 3:33:37am UTC
Race Finish April 23, 2024 3:34:56am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 8.19
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")