Skip to content

Instantly share code, notes, and snippets.

@CdePriester
CdePriester / hrtool.py
Created June 28, 2021 12:19 — 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/'