Format imports
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
from puzzle import (RangeConversion, resolve_destination, resolve_source,
|
||||
solve_pt_1, solve_pt_2)
|
||||
from puzzle import (
|
||||
RangeConversion,
|
||||
resolve_destination,
|
||||
resolve_source,
|
||||
solve_pt_1,
|
||||
solve_pt_2,
|
||||
)
|
||||
|
||||
mock_seeds = [79, 14, 55, 13]
|
||||
mock_destinations = [81, 14, 57, 13]
|
||||
|
@@ -1,11 +1,11 @@
|
||||
"Day 3: Gear Ratios"
|
||||
|
||||
from __future__ import annotations
|
||||
from collections import UserDict
|
||||
|
||||
import math
|
||||
from collections import UserDict
|
||||
from dataclasses import dataclass
|
||||
from functools import reduce
|
||||
import math
|
||||
from typing import NamedTuple
|
||||
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
from advent_of_code.gears import (
|
||||
Number,
|
||||
Part,
|
||||
Schematic,
|
||||
Number,
|
||||
Symbol,
|
||||
solve_part_1,
|
||||
solve_part_2,
|
||||
|
Reference in New Issue
Block a user