abhishek (a_anand_12)

Race #9

View Pit Stop page for race #9 by a_anand_12Ghost race

View profile for abhishek (a_anand_12)

Official speed 22.26 wpm (83.02 seconds elapsed during race)
Race Start November 30, 2022 2:20:13pm UTC
Race Finish November 30, 2022 2:21:36pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 7.79
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")