Add 2024 day1

This commit is contained in:
2024-12-01 11:33:01 -05:00
parent 74a9f60b12
commit bd9480c6a7
3 changed files with 1044 additions and 0 deletions

View File

@ -5,6 +5,7 @@ def main():
lines = file.readlines()
matrix = [list(line.strip()) for line in lines]
print(matrix)
last_column = len(matrix[0]) -1
last_row = len(matrix) -1
print(last_column, last_row)