Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Restaurant
- def initialize(menu)
- @menu = menu
- end
- def cost(*orders)
- costs = 0
- orders.each do |order|
- order.each do |item|
- costs = costs + @menu[item[0]] * item[1]
- end
- end
- return costs
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment