2024(2): There is puzzle 2.

This commit is contained in:
2024-12-18 09:35:30 +01:00
parent 6d6b4bb8cb
commit c2c5a7f231
3 changed files with 57 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import numpy as np
# Load both columns into numpy arrays of type int
left, right = np.loadtxt('input', dtype=int).T
left, right = np.loadtxt("input", dtype=int).T
# Sort both lists (ASC)
left.sort()