Kavindu (kavindu_jayarathne)

Race #26

View Pit Stop page for race #26 by kavindu_jayarathneGhost race

View profile for Kavindu (kavindu_jayarathne)

Official speed 33.72 wpm (54.80 seconds elapsed during race)
Race Start May 30, 2023 11:07:10am UTC
Race Finish May 30, 2023 11:08:05am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.80
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")