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
# Build an Electronic Grocery List! | |
#Objectives | |
# 1. With your partner, talk about what you would like to do with your grocery list. Start each statement with " | |
# As a user, I want to ..." These are what we call "user stories." | |
# 2. Pseudocode with your partner. What objects, classes, and methods will you need to do each of the things you | |
# identified in your user stories? | |
# 3. Build the outline for your code and then write driver code at the bottom (to call the method on the object) | |
# 4. Fill in your outline to make your grocery list! | |
# 5. Submit your challenge! |
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 src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script type="text/javascript" src="jquery_example.js"></script> | |
</head> |
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
370 git clone https://github.com/buck3000/CLI-Obstacle-Course.git | |
371 cd CLI-Obstacle-Course/ | |
372 ls | |
373 ls | |
374 mv images app/assets | |
375 ls | |
376 cd app | |
377 ls | |
378 cd assets/ | |
379 ls |
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 | |
attr_accessor :dice_grid | |
def initialize(dice_grid) | |
@dice_grid = dice_grid | |
end | |
def create_word(coords) | |
array =[] | |
coords.each_index do |c| |