使用块查找匹配条件的值

发布于 2024-11-07 02:04:33 字数 323 浏览 0 评论 0原文

对我来说,这是完全有道理的:

triple = dice.collect {|value| if (dice.count(value) >= 3)} ---> Syntax error

或者

triple = dice.collect {|value| dice.count(value) >= 3} ----> Array of true/false

我想要数字的值,而不是 dice.count() 的真假。我知道一定有一种简单的方法可以做到这一点。

To me this makes perfect sense:

triple = dice.collect {|value| if (dice.count(value) >= 3)} ---> Syntax error

OR

triple = dice.collect {|value| dice.count(value) >= 3} ----> Array of true/false

I want the value of the number, not the true or falsity of dice.count(). I know there must be a simple way of doing this.

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

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

发布评论

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

评论(3

掀纱窥君容 2024-11-14 02:04:33

听起来你想要 Array#select ,而不是 Array#collect (也称为如 Array#map)。

collect/map 将获取每个并将块的结果放入数组中。这就是为什么您会看到一系列 true/false 的原因。

select 将获取每个,如果块的计算结果为true,则将其作为数组成员返回:

triple = dice.select{ |value| dice.count(value) >= 3 }

It sounds like you want Array#select, not Array#collect (also known as Array#map).

collect/map will take each value and put the results of your block into an array. This is why you're seeing an array of true/false.

select will take each value, and return it as a member of an array if the block evaluates to true:

triple = dice.select{ |value| dice.count(value) >= 3 }
紙鸢 2024-11-14 02:04:33

您的块需要返回最终数组中您想要的任何内容。

triple = dice.collect {|value| 
  if dice.count(value) >= 3
    dice.count(value)
  end
}

请注意,对于元素 nil ,这将返回 nil 。 3(尽管您可以添加 else 来返回 0 或其他值)。如果您只需要与查询匹配的元素,则需要使用 dice.select()

Your block needs to return whatever it is you want in the final array.

triple = dice.collect {|value| 
  if dice.count(value) >= 3
    dice.count(value)
  end
}

Note that this will return nil for elements < 3 (though you can add an else to return 0 or something). If you only want elements that match your query, you'll need to use dice.select()

情域 2024-11-14 02:04:33

至于您的第一个代码片段,

triple = dice.collect {|value| THE_CODE_BLOCK_STARTS_HERE }

因此, if (dice.count(value) >= 3) 是一个不完整的 if 语句。这就是为什么你会收到语法错误。

As for your first code snippet,

triple = dice.collect {|value| THE_CODE_BLOCK_STARTS_HERE }

Thus, if (dice.count(value) >= 3) is an incomplete if statement. That's why you get syntax error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文