Nikunj (khokharnikunj8)

Race #1

View Pit Stop page for race #1 by khokharnikunj8Ghost race

View profile for Nikunj (khokharnikunj8)

Official speed 67.07 wpm (27.55 seconds elapsed during race)
Race Start November 19, 2020 8:18:42am UTC
Race Finish November 19, 2020 8:19:09am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 23.47
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")