1
0

Deleted mojo file

This commit is contained in:
Adrien Bouvais 2024-12-05 00:19:29 +01:00
parent 42e86ecf5d
commit d153b44e1e

View File

@ -1,21 +0,0 @@
from time import now
from collections import List
from collections.string import atol
from Sort import sort
fn main() raises:
start = now()
with open("day1/input", "r") as f:
content = f.read()
left = List[Int]()
right = List[Int]()
for line in content.split('\n')[0:-1]:
left.append(atol(line[][0:5]))
right.append(atol(line[][8:13]))
print("Took ", (now() - start) / 1_000_000, "ms")
fn sort()