advent_of_code_2024::day_7

Type Alias Operation

source
type Operation = fn(_: i64, _: i64) -> Option<i64>;
Expand description

An operation to apply with the running total on the lhs, and the next number as the rhs.