This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>DOM manipulation with jQuery</title> | |
<!-- Add a link to jQuery CDN here script here --> | |
<script type="text/javascript" src="jquery_example.js"></script> | |
</head> | |
<body> |
This file contains hidden or 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 | |
def initialize(dice_grid) # initializes the boggle board | |
@board = dice_grid | |
end | |
# create_word will return a string of letters based upon user selected set of coordinates | |
def create_word(*coords) coords.map { |coord| @board[coord.first][coord.last]}.join("") end | |
def get_row(row) @board[row] end # Returns selected row of the boggle board | |
def get_col(col) @board.transpose[col] end # Returns selected column of the boggle board |