如何检查 NSMutableArray 中的重复字符串
我有一个 NSMutableArray,我想检查重复的字符串。我不需要知道字符串是什么,只要知道是否有重复即可。
我正在考虑将答案添加到 NSSet 中,然后检查条目数是否与原始数组不同。有更好的方法吗?
I have an NSMutableArray that I'd like to check for duplicate strings. I don't need to know what the strings are, just if there are any duplicates.
I'm thinking add the answers to an NSSet, then check to see if the number of entries is different than the original array. Is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是查看重复值的代码
}
Here is the code to see duplicates values
}