05-2 fertig

This commit is contained in:
2023-12-05 20:01:21 +01:00
parent 0db8075aaf
commit 285c32b5df
6 changed files with 144 additions and 36 deletions

View File

@@ -4,7 +4,7 @@
part_sum = 0
matrix = []
input_file = open("input.txt", "r")
input_file = open("input-ex.txt", "r")
for line in input_file:
matrix.append(line.strip())
input_file.close()

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
matrix = []
input_file = open("input.txt", "r")
input_file = open("input-ex.txt", "r")
for line in input_file:
matrix.append(line.strip())
input_file.close()