Alex Beltran T. (beltran_tarqui)

Race #150

View Pit Stop page for race #150 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 37.01 wpm (49.93 seconds elapsed during race)
Race Start June 20, 2025 11:44:56pm UTC
Race Finish June 20, 2025 11:45:46pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 12.95
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")