Files
advent-of-code/2025/aoc/__init__.py
T
Samuel Enocsson 549f0c4382 Initial commit: AoC solutions 2023-2025
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-02 10:39:09 +01:00

18 lines
246 B
Python

"""Advent of Code 2025 utilities."""
from .helpers import (
read_input,
read_lines,
read_ints,
read_grid,
read_blocks,
)
__all__ = [
"read_input",
"read_lines",
"read_ints",
"read_grid",
"read_blocks",
]