moved to day11 directory

This commit is contained in:
JISAUAY 2025-03-05 16:32:53 -06:00
parent 6adfe75f0e
commit 3d6e6397e1
3 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import functools import functools
with open('input.text', 'r') as file: with open('input.text', 'r') as file:
data = file.read() data: str = file.read()
stones: dict[int, int] = {} stones: dict[int, int] = {}
for n in data.split(): for n in data.split():