Feng (da_xiao_jin_dou)

Race #19

View Pit Stop page for race #19 by da_xiao_jin_douGhost race

View profile for Feng (da_xiao_jin_dou)

Official speed 23.67 wpm (78.07 seconds elapsed during race)
Race Start February 28, 2022 10:43:51pm UTC
Race Finish February 28, 2022 10:45:09pm UTC
Outcome Win (1 of 2)
Accuracy 93.0%
Points 8.28
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")