Skip to content

Instantly share code, notes, and snippets.

@jdubnicek
jdubnicek / 0.2.1-boggle_class_from_methods.rb
Last active December 28, 2015 11:09 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
["t", "a", "k", "e"]]
class BoggleBoard
def initialize(dice_grid)
@dice_grid = dice_grid