From d003df1501161b3135e339e4a505fc9f0ae0af51 Mon Sep 17 00:00:00 2001 From: tenpai Date: Sat, 17 Aug 2024 13:31:59 +0900 Subject: [PATCH] Update data_structures_ex04.py Fixes the file reference to the test data in the solutions folder. --- data_structures/solutions/data_structures_ex04.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/solutions/data_structures_ex04.py b/data_structures/solutions/data_structures_ex04.py index 6bfb553..73342a0 100755 --- a/data_structures/solutions/data_structures_ex04.py +++ b/data_structures/solutions/data_structures_ex04.py @@ -26,7 +26,7 @@ """ import sys -file = open("DATA", "r") +file = open("dataset", "r") lines = file.readlines() file.close()