Skip to content

Instantly share code, notes, and snippets.

@rmathur101
rmathur101 / 0.2.1-boggle_class_from_methods.rb
Created January 11, 2014 20:34 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
#Create a Boggle Board Class using the methods created in BoggleBoardArray.rb
class BoggleBoard
attr_accessor :board
def initialize(board)
@board = board
end
def create_word(*coords) #I think the * in front of coords significes that there are mulitiple such variables that can be passed as arguments