Skip to content

Instantly share code, notes, and snippets.

View dpneumo's full-sized avatar

Mitch Kuppinger dpneumo

  • TPCCC
  • Arlington, TX
View GitHub Profile
@dpneumo
dpneumo / edge.rb
Created February 20, 2023 13:24
AoC 2022 Day16 Part1
class Edge
attr_reader :start, :to, :dist
def initialize(start:, to:, dist:)
@start = start
@to = to
@dist = dist
end
end