Alex Beltran T. (beltran_tarqui)

Race #158

View Pit Stop page for race #158 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 30.86 wpm (59.88 seconds elapsed during race)
Race Start June 21, 2025 12:01:38am UTC
Race Finish June 21, 2025 12:02:38am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 10.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")