Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
のような配列がprods[[1,2] [3,4]]あります。最初の要素(1,3)はproduct_idで、2番目の要素(2,4)は数量です。すべての製品とその数量をリストする必要があります。
prods[[1,2] [3,4]]
配列を繰り返すことができます:
[[1,2],[3,4]].each { |product_id,qty| puts "#{product_id} => #{qty}" }
出力:
1 => 2 3 => 4