Free Palestine (rollno14)

Race #110

View Pit Stop page for race #110 by rollno14Ghost race

View profile for Free Palestine (rollno14)

Official speed 63.17 wpm (29.25 seconds elapsed during race)
Race Start July 17, 2021 7:05:34am UTC
Race Finish July 17, 2021 7:06:04am UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 22.11
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")