Project can be used to create a database and uses Activerecord validation to filter data passed in as new objects before saving them to the database.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BoggleBoard | |
attr_reader :dice_grid | |
def initialize(dice_grid) | |
@dice_grid = dice_grid | |
end | |
def get_row(row) | |
print dice_grid[row] | |
puts "" |
NewerOlder