Stefan Jovanović (stefanstef33)

Race #89

View Pit Stop page for race #89 by stefanstef33Ghost race

View profile for Stefan Jovanović (stefanstef33)

Official speed 67.20 wpm (27.50 seconds elapsed during race)
Race Start August 20, 2023 2:20:15pm UTC
Race Finish August 20, 2023 2:20:43pm UTC
Outcome Win (1 of 3)
Opponents 3. xquyen (49.26 wpm)
Accuracy 98.0%
Points 23.52
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")