TheIronYard--Orlando / ROR--2015--SPRING

Resources and homework for the Ruby on Rails cohort at @TheIronYard--Orlando for Spring 2015
Creative Commons Zero v1.0 Universal
6 stars 7 forks source link

01--I-Love-My-Gramma(r)-Kelly Strickland #11

Closed QueVee closed 9 years ago

QueVee commented 9 years ago

Requirements

Tasks

  # You can find if something is inside a range:
  (1..10).include?(5) #=> true
  (1..10).include?(300) #=> false

  # You can find out how big it is:
  (1..10).size #=> 10
  (1776..2015).size #=> 240

  # You can iterate over it:
  (13..19).each{|n| print "#{n} " } #=> 13 14 15 16 17 18 19

### Additional Resources
QueVee commented 9 years ago

Wiki Pages https://github.com/QueVee/TIY-Assignments/wiki

PR Page https://github.com/QueVee/TIY-Assignments/pull/1

AJean144 commented 9 years ago

:+1:

QueVee commented 9 years ago

Pull Request

https://github.com/QueVee/TIY-Assignments/pull/3

bgates commented 9 years ago

We should take a few minutes to go over some of the hash problems, and I might put an extra short lecture together for those of you who are hung up on git/GitHub.