加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Ruby,基于多个字段的数组中的唯一哈希

发布时间:2020-12-16 19:01:47 所属栏目:百科 来源:网络整理
导读:我想基于运动和类型组合找回一系列哈希 我有以下数组: [ { sport: "football",type: 11,other_key: 5 },{ sport: "football",type: 12,othey_key: 100 },othey_key: 700 },{ sport: "basketball",othey_key: 200 },othey_key: 500 }] 我想回去: [ { sport:
我想基于运动和类型组合找回一系列哈希

我有以下数组:

[
    { sport: "football",type: 11,other_key: 5 },{ sport: "football",type: 12,othey_key: 100  },othey_key: 700  },{ sport: "basketball",othey_key: 200 },othey_key: 500 }
]

我想回去:

[
    { sport: "football",]

我试过用(伪代码):

[{},{},{}].uniq { |m| m.sport and m.type }

我知道我可以用循环创建这样的数组,我对ruby很新,我很好奇是否有更好(更优雅)的方法.

解决方法

尝试使用 Array#values_at生成一个到uniq的数组.
sports.uniq{ |s| s.values_at(:sport,:type) }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读