module Advent::Day09

Defined in:

day09.cr

Constant Summary

DIRS = {"U" => Point.new(0, -1), "D" => Point.new(0, 1), "L" => Point.new(-1, 0), "R" => Point.new(1, 0)}

Class Method Summary

Class Method Detail

def self.run #

[View source]