Skip to content

Instantly share code, notes, and snippets.

@dbc-challenges
Created October 31, 2013 05:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 297 You must be signed in to fork a gist
  • Save dbc-challenges/7244618 to your computer and use it in GitHub Desktop.
Save dbc-challenges/7244618 to your computer and use it in GitHub Desktop.
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
#your code here
end
dice_grid = [["b", "r", "a", "e"],
["i", "o", "d", "t"],
["e", "c", "l", "r"],
["t", "a", "k", "e"]]
boggle_board = BoggleBoard.new(dice_grid)
# implement tests for each of the methods here:
# create driver test code to retrieve a value at a coordinate here:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment