Format imports

This commit is contained in:
Nettika
2023-12-18 20:29:25 -08:00
parent 822281aa4e
commit 4f7424b533
3 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
from puzzle import (RangeConversion, resolve_destination, resolve_source, from puzzle import (
solve_pt_1, solve_pt_2) RangeConversion,
resolve_destination,
resolve_source,
solve_pt_1,
solve_pt_2,
)
mock_seeds = [79, 14, 55, 13] mock_seeds = [79, 14, 55, 13]
mock_destinations = [81, 14, 57, 13] mock_destinations = [81, 14, 57, 13]

View File

@@ -1,11 +1,11 @@
"Day 3: Gear Ratios" "Day 3: Gear Ratios"
from __future__ import annotations from __future__ import annotations
from collections import UserDict
import math
from collections import UserDict
from dataclasses import dataclass from dataclasses import dataclass
from functools import reduce from functools import reduce
import math
from typing import NamedTuple from typing import NamedTuple

View File

@@ -1,7 +1,7 @@
from advent_of_code.gears import ( from advent_of_code.gears import (
Number,
Part, Part,
Schematic, Schematic,
Number,
Symbol, Symbol,
solve_part_1, solve_part_1,
solve_part_2, solve_part_2,