Ruby 删除可枚举列表中的重复项

发布于 2024-08-04 19:24:16 字数 41 浏览 5 评论 0原文

ruby 中有没有一种好方法可以删除可枚举列表中的重复项(即拒绝等)

Is there a good way in ruby to remove duplicates in enumerable lists (i.e. reject, etc.)

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

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

发布评论

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

评论(4

梦里南柯 2024-08-11 19:24:16

对于数组,您可以使用 uniq() 方法

a = [ "a", "a", "b", "b", "c" ]
a.uniq   #=> ["a", "b", "c"]

,因此如果您只是

(1..10).to_a.uniq

或者

%w{ant bat cat ant}.to_a.uniq

因为无论如何,您实现的几乎每个方法都会作为 Array 类返回。

For array you can use uniq() method

a = [ "a", "a", "b", "b", "c" ]
a.uniq   #=> ["a", "b", "c"]

so if you just

(1..10).to_a.uniq

or

%w{ant bat cat ant}.to_a.uniq

because anyway almost every methods you do implement will return as an Array class.

风为裳 2024-08-11 19:24:16

策略是将它们转换为数组并从数组中删除重复项。顺便说一句,列表在任何情况下都是 ruby​​ 中的数组,所以我不确定“可枚举列表”是什么意思

Well the strategy would be to convert them to arrays and remove the duplicates from the arrays. By the way lists are arrays in ruby in any case so I'm not sure what you mean by "enumerable lists"

一身骄傲 2024-08-11 19:24:16

如果元素顺序不重要,您可以转换为 Set。

http://www.ruby-doc.org/core/classes/Set。 html

You can do a conversion to a Set, if element order is not important.

http://www.ruby-doc.org/core/classes/Set.html

原野 2024-08-11 19:24:16

如果对象没有 .uniq 方法,我喜欢使用集合逻辑运算符。

a = [2,3,3,5,5,5,6] # => [2, 3, 3, 5, 5, 5, 6] 
a | a # => [2, 3, 5, 6]

I like using the set logic operators, if the object doesn't have a .uniq method.

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