mirror of
https://github.com/onyx-and-iris/aoc2025.git
synced 2025-12-08 19:57:48 +00:00
Compare commits
No commits in common. "45c6ec52b0429e15bbd3b738d55c5f615e66dacc" and "18c73c1bb7210cad4292b1f84d32f8dac3a39e96" have entirely different histories.
45c6ec52b0
...
18c73c1bb7
@ -1,7 +1,11 @@
|
|||||||
|
require "forwardable"
|
||||||
|
|
||||||
require_relative "cell"
|
require_relative "cell"
|
||||||
|
|
||||||
class Grid
|
class Grid
|
||||||
attr_reader :rows, :columns
|
attr_reader :rows, :columns
|
||||||
|
extend Forwardable
|
||||||
|
def_delegators :@rows, :[]
|
||||||
|
|
||||||
def initialize(input)
|
def initialize(input)
|
||||||
@rows = []
|
@rows = []
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user