计算 Ruby 中每个唯一对象属性的对象总和

发布于 2024-08-29 00:20:13 字数 644 浏览 9 评论 0原文

我正在帮助回答这个问题 这引发了我自己的一个问题。

  1. Pie 是一个对象,它具有由 PiePiece 对象组成的 pieces 数组。
  2. 每个 PiePiece 都有一个 flavor 属性

如何创建如下所示的哈希:

# flavor => number of pieces
{
  :cherry => 3
  :apple => 1
  :strawberry => 2
}

这可行,但我认为它可以改进

def inventory
  hash = {}
  pieces.each do |p|
    hash[p.flavor] ||= 0
    hash[p.flavor] += 1
  end
  hash
end

有什么想法吗?

I was helping with an answer in this question and it sparked a question of my own.

  1. Pie is an object that has a pieces array made of of PiePiece objects.
  2. Each PiePiece has a flavor attribute

How do I create a hash that looks like this:

# flavor => number of pieces
{
  :cherry => 3
  :apple => 1
  :strawberry => 2
}

This works, but I think it could be improved

def inventory
  hash = {}
  pieces.each do |p|
    hash[p.flavor] ||= 0
    hash[p.flavor] += 1
  end
  hash
end

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生未歇 2024-09-05 00:20:13
def inventory
  Hash[pieces.group_by(&:flavor).map{|f,p| [f, p.size]}]
end
def inventory
  Hash[pieces.group_by(&:flavor).map{|f,p| [f, p.size]}]
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文