Skip to content

Instantly share code, notes, and snippets.

View christina-taggart's full-sized avatar

Christina Taggart christina-taggart

View GitHub Profile
@christina-taggart
christina-taggart / 0.2.1-boggle_class_from_methods.rb
Last active December 29, 2015 14:29 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
#I kept getting an error when passing boggle_board as an argument into initialize
#so I had to repeat @boggle_board as an instance variable, which I will fix when I understand what exactly happened
@boggle_board = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
["t", "a", "k", "e"]]
class BoggleBoard