gpt4 book ai didi

arrays - Ruby:根据条件迭代和嵌套哈希

转载 作者:数据小太阳 更新时间:2023-10-29 08:57:40 26 4
gpt4 key购买 nike

我有两个这样的哈希数组:

h1=[{id:1, item:1, from: DateTime.new(2017,9,4,6,0,0,'+0300'), to: DateTime.new(2017,9,4,17,59,59,'+0300'), value:10},
{id:1, item:2, from: DateTime.new(2017,9,4,18,0,0,'+0300'), to: DateTime.new(2017,9,4,23,59,59,'+0300'), value:10}]

h2=[{id:1, item:1, date: DateTime.new(2017,9,4,6,10,0,'+0300'), value:5},
{id:2, item:1, date: DateTime.new(2017,9,4,7,20,0,'+0300'), value:7},
{id:3, item:1, date: DateTime.new(2017,9,4,8,05,0,'+0300'), value:10},
{id:4, item:1, date: DateTime.new(2017,9,4,18,19,10,'+0300'), value:1},
{id:5, item:2, date: DateTime.new(2017,9,4,19,20,0,'+0300'), value:2},
{id:6, item:2, date: DateTime.new(2017,9,4,22,22,0,'+0300'), value:5},
{id:7, item:2, date: DateTime.new(2017,9,5,23,0,0,'+0300'), value:1}]

我需要在每个 h1 下嵌套来自 h2 的任何散列,它符合条件:

  1. item 值(例如,两个散列中的 item:1)
  2. date from h2from - to 范围内 h1/li>

到目前为止,我可以简单地将所有哈希值嵌套在 h1 下:

my_hash = h1.each do 
|mh| mh[:inventory]=h2
end

我相信标准匹配的事情可以用这个来完成:

h2.find{ |i| i[:item] == h1[:item] && i[:date].between?(h2[:from], h2[:to]) }

请问我如何将它组合起来使其工作?谢谢!

更新 2

我正在尝试为每个 h1 匹配 h2 的哈希值:

my_hash = h1.each do |hsh| 
h2.each do |hsh2|
hash=hsh2.find{|h| h[:item] == hsh[:item] && h[:date].between?(hsh[:from],hsh[:to])} if hash
hsh[:inventory] = hash
end
end

但是我收到错误 ArgumentError: wrong number of arguments (given 1, expected 0) from (pry):12:in "hash"。请问我这里做错了什么?

更新 3如果可能的话,理想的输出应该是这样的:

=> [:order=>{:id=>1,
:item=>1,
:from=>Mon, 04 Sep 2017 06:00:00 +0300,
:to=>Mon, 04 Sep 2017 17:59:59 +0300,
:value=>10,
:inventory=>
{:id=>1, :item=>1, :date=>Mon, 04 Sep 2017 06:10:00 +0300, :value=>5},
{:id=>2, :item=>1, :date=>Mon, 04 Sep 2017 07:20:00 +0300, :value=>7},
{:id=>3, :item=>1, :date=>Mon, 04 Sep 2017 08:05:00 +0300, :value=>10}
:order=>{:id=>1,
:item=>2,
:from=>Mon, 04 Sep 2017 18:00:00 +0300,
:to=>Mon, 04 Sep 2017 23:59:59 +0300,
:value=>10,
:inventory=>
{:id=>4, :item=>2, :date=>Mon, 04 Sep 2017 18:19:10 +0300, :value=>1},
{:id=>5, :item=>2, :date=>Mon, 04 Sep 2017 19:20:00 +0300, :value=>2},
{:id=>6, :item=>2, :date=>Mon, 04 Sep 2017 22:22:00 +0300, :value=>5},
{:id=>7, :item=>2, :date=>Mon, 04 Sep 2017 23:00:00 +0300, :value=>1}}]

对于每个 h1 我想给新键 order 然后在 inventory 下嵌套适当的 h2 散列键。

最佳答案

这适用于 ruby​​ 2.4.2p198(2017-09-14 修订版 59899)[x64-mingw32]

h1.each do |hsh1|
hsh1[:inventory] =
h2.find do |hsh2|
hsh2[:item] == hsh1[:item] &&
hsh2[:date].between?(hsh1[:from],hsh1[:to])
end || Hash.new
end

您可以通过将 Hash.new 替换为所需的默认值来使用 hsh1[:inventory] ​​的默认值。

关于arrays - Ruby:根据条件迭代和嵌套哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46260795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com