Created
April 2, 2016 07:13
-
-
Save Rinkana/6e2647f5018b13f883e21ee0b7aba46e to your computer and use it in GitHub Desktop.
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
def find_car(make, model) | |
@cars.each do |car| | |
if car.matches?(make, model) | |
car | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment