Hardik (hardik_prajapati)

Race #5

View Pit Stop page for race #5 by hardik_prajapatiGhost race

View profile for Hardik (hardik_prajapati)

Official speed 25.62 wpm (72.13 seconds elapsed during race)
Race Start April 23, 2024 3:35:13am UTC
Race Finish April 23, 2024 3:36:25am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 8.97
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")