Skip to content

Instantly share code, notes, and snippets.

@natekandler
natekandler / boggle_board_class.rb
Last active August 29, 2015 13:55 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
Creating a Boggle Board Class
dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
["t", "a", "k", "e"]]
class BoggleBoard
def initialize(board)
@board = board
end