Skip to content

Commit

Permalink
Merge pull request #18 from Benezivas/fix_input_path
Browse files Browse the repository at this point in the history
Update instance input path
  • Loading branch information
ImogenBits authored Oct 6, 2023
2 parents bad7cc6 + 63f941e commit 8d9de1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algobattle_problems/pairsum/solver_random/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import random

line = None
with open("/input/instance/instance.json", "r") as input:
with open("/input/instance.json", "r") as input:
instance = json.load(input)

ints: list[int] = instance["numbers"]
Expand Down

0 comments on commit 8d9de1b

Please sign in to comment.