2022 begins.

This commit is contained in:
David Vereb
2022-12-01 09:14:56 -05:00
parent 7717713bde
commit 79a6123526
11 changed files with 2667 additions and 1 deletions

12
2021/15/main.py Normal file
View File

@@ -0,0 +1,12 @@
class Point:
shortest_path = []
data = []
for line in open('example_data', 'r'):
data_row = []
for ch in line.strip():
data_row.append(ch)
data.append(data_row)
for row in data:
print(row)