Skip to content

Instantly share code, notes, and snippets.

View chrisdolendo's full-sized avatar

Christine Dolendo chrisdolendo

View GitHub Profile
@chrisdolendo
chrisdolendo / 0.2.1-boggle_class_from_methods.rb
Last active January 1, 2016 15:19 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
attr_reader :board
#attr_reader allows the user to access data without writing it
def initialize(grid)
@board = grid
end
def create_word(*coords)