jugal kishor (jugal_sahu)

Race #3

View Pit Stop page for race #3 by jugal_sahuGhost race

View profile for jugal kishor (jugal_sahu)

Official speed 42.29 wpm (43.70 seconds elapsed during race)
Race Start August 11, 2023 3:53:36am UTC
Race Finish August 11, 2023 3:54:20am UTC
Outcome No win (2 of 2)
Opponents 1. inusah (48.76 wpm)
Accuracy 96.0%
Points 14.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")