Ruby 删除可枚举列表中的重复项
ruby 中有没有一种好方法可以删除可枚举列表中的重复项(即拒绝等)
Is there a good way in ruby to remove duplicates in enumerable lists (i.e. reject, etc.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于数组,您可以使用 uniq() 方法
,因此如果您只是
或者
因为无论如何,您实现的几乎每个方法都会作为 Array 类返回。
For array you can use uniq() method
so if you just
or
because anyway almost every methods you do implement will return as an Array class.
策略是将它们转换为数组并从数组中删除重复项。顺便说一句,列表在任何情况下都是 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"
如果元素顺序不重要,您可以转换为 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
如果对象没有 .uniq 方法,我喜欢使用集合逻辑运算符。
I like using the set logic operators, if the object doesn't have a .uniq method.