Skip to content

Commit ac555c4

Browse files
committed
chore(ec): move everybody-codes solutions and test to the right folder
1 parent 5e1d88a commit ac555c4

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.file_utils import get_input_file_path, read_input_file
1+
from utils.ec_utils import get_input_file_path, read_input_file
22

33

44
def get_potions_from_enemies(enemies: str, chunk: int = 1) -> int:
@@ -63,7 +63,7 @@ def solve_01_2024(filename: str) -> tuple[int, int, int]:
6363
if __name__ == "__main__":
6464
# Import function to print results
6565
import time
66-
from utils.file_utils import print_day_results
66+
from utils.ec_utils import print_day_results
6767

6868
# Calculate results for demo and real input files
6969
demo_1, demo_2, demo_3 = solve_01_2024("input_demo.txt")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import re
2-
from utils.file_utils import (
2+
from utils.ec_utils import (
33
get_input_file_path, read_input_file,
44
from_linear_to_circular_string,
55
transpose_matrix_of_strings
@@ -120,7 +120,7 @@ def solve_02_2024(filename: str) -> tuple[int, int, int]:
120120
if __name__ == "__main__":
121121
# Import function to print results
122122
import time
123-
from utils.file_utils import print_day_results
123+
from utils.ec_utils import print_day_results
124124

125125
# Calculate results for demo and real input files
126126
demo_1, demo_2, demo_3 = solve_02_2024("input_demo.txt")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.file_utils import (get_input_file_path, read_input_file)
1+
from utils.ec_utils import (get_input_file_path, read_input_file)
22
import pprint as pp
33

44

@@ -108,7 +108,7 @@ def solve_03_2024(filename: str) -> tuple[int, int, int]:
108108
if __name__ == "__main__":
109109
# Import function to print results
110110
import time
111-
from utils.file_utils import print_day_results
111+
from utils.ec_utils import print_day_results
112112

113113
# Calculate results for demo and real input files
114114
demo_1, demo_2, demo_3 = solve_03_2024("input_demo.txt")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.file_utils import (
1+
from utils.ec_utils import (
22
get_input_file_path, read_input_file,
33
from_list_strings_to_list_integers,
44
get_median_from_list_integers
@@ -50,7 +50,7 @@ def solve_04_2024(filename: str) -> tuple[int, int, int]:
5050
if __name__ == "__main__":
5151
# Import function to print results
5252
import time
53-
from utils.file_utils import print_day_results
53+
from utils.ec_utils import print_day_results
5454

5555
# Calculate results for demo and real input files
5656
demo_1, demo_2, demo_3 = solve_04_2024("input_demo.txt")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.file_utils import (get_input_file_path, read_input_file)
1+
from utils.ec_utils import (get_input_file_path, read_input_file)
22
import pprint as pp
33

44
def create_tree(data_tree: dict, node: str, current_tree: dict) -> dict:
@@ -141,7 +141,7 @@ def solve_06_2024(filename: str) -> tuple[str, str, str]:
141141
if __name__ == "__main__":
142142
# Import function to print results
143143
import time
144-
from utils.file_utils import print_day_results
144+
from utils.ec_utils import print_day_results
145145

146146
# Calculate results for demo and real input files
147147
demo_1, demo_2, demo_3 = solve_06_2024("input_demo.txt")

0 commit comments

Comments
 (0)