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
I can't access any gists.... what is going on? | |
Github says | |
"WHOOPS! can't find the gist of the gist you were looking for." | |
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
Steps: | |
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable. | |
Answer the following questions in this file: | |
(Remember, this should be useful for others in your cohort, | |
so write for an audience that does not know anything about your website.) | |
Which website did you evaluate? | |
1) How does this website follow HTML Best Practices? Are there any places where |
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
Steps: | |
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable. | |
Answer the following questions in this file: | |
(Remember, this should be useful for others in your cohort, | |
so write for an audience that does not know anything about your website.) | |
Which website did you evaluate? | |
1) How does this website follow HTML Best Practices? Are there any places where |
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 | |
def initialize(dice_grid) | |
@dice_grid = dice_grid | |
end | |
def create_word(*coords) #splat | |
coords.map { |coord| @dice_grid[coord.first][coord.last]}.join("") #dice_grid[row][column] | |
end |
NewerOlder