Skip to content

Instantly share code, notes, and snippets.

View juandefelix's full-sized avatar

Juan Ortiz juandefelix

View GitHub Profile
503 git clone https://github.com/dbc-challenges/CLI-Obstacle-Course.git
504 ls
505 cd CLI*
506 ls
507 man ls
508 ls -al
509 mv images app/assets
510 ls
511 ls -al
512 cd app/views/static_files
@juandefelix
juandefelix / 0.2.1-boggle_class_from_methods.rb
Last active December 27, 2015 22:39 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
def initialize(board)
@board = board
end
def create_word(*coords)
coords.map {|coord| @board[coord.first][coord.last]}.join("")
end