Skip to content

Instantly share code, notes, and snippets.

View DevTrav's full-sized avatar

Travers La Ville DevTrav

View GitHub Profile
@DevTrav
DevTrav / hrtool.py
Created December 6, 2022 22:41 — forked from miratcan/hrtool.py
A python script to run hackerrank answers on your local. Just run it in the sample test cases folder that you downloaded from hackerrank.
import re
import glob
import subprocess
from os.path import exists
from sys import exit
INPUT_FOLDER = 'input/'
OUTPUT_FOLDER = 'output/'