class TowersOfHanoi::Board::Base

Public Class Methods

new(width: 3) click to toggle source
# File lib/towers_of_hanoi/board/base.rb, line 6
def initialize(width: 3)
  @width = width
end