Skip to content

Instantly share code, notes, and snippets.

View theuntoldapps's full-sized avatar

theuntoldapps

View GitHub Profile
@theuntoldapps
theuntoldapps / sorter.py
Created April 23, 2023 04:25
Sorting har file
import json
import sys
arguments = sys.argv
try:
file = arguments[1]
iters = (int)(arguments[2])
with open(file) as s:
d = json.load(s)
m = {}