Karan Jain (karanjain18)

Race #318

View Pit Stop page for race #318 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 62.93 wpm (29.37 seconds elapsed during race)
Race Start April 24, 2020 9:02:46pm UTC
Race Finish April 24, 2020 9:03:15pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 22.03
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")