require 'csv'
total_sales = 0
CSV.foreach('sales-data.csv', headers: true, converters: :all) do |row|
# TODO: check if category is "Music" (row[2])
# TODO: if it is music, add total_sales + the row's sales (row[6])
end
puts total_sales.round(2)
Can't seem to get this to work...was thinking the answer would be:
if row[2] == "music"
total_sales = total_sales + row[6]
Coffee is made, brain is fresh. I will report back.
total_sales = 0
CSV.foreach('sales-data.csv', headers: true, converters: :all) do |row|
# TODO: check if category is "Music" (row[2])
# TODO: if it is music, add total_sales + the row's sales (row[6])
end
puts total_sales.round(2)
Can't seem to get this to work...was thinking the answer would be:
if row[2] == "music"
total_sales = total_sales + row[6]
Coffee is made, brain is fresh. I will report back.
Comments
Post a Comment