Android:在数组中查找匹配元素的方法?
您好,我遇到了一个特殊情况
,我有两个数组,ArrayA[] 有 50 个项目,另一个 ArrayB[] 有 10 个项目。
我想将 ArrayB[](10 个项目)的值转换为 1(如果它们与 ArrayA[] 中的值匹配),如果不匹配则将其转换为 0。
在过去的 5 个小时里,我一直在尝试各种技术 - 如果我能得到一些指导来实现这一目标,那就太好了!
感谢您的帮助!
Hi I am stuck in a particular case
I have two arrays, ArrayA[] with 50 items and another ArrayB[] with 10 items.
I want to convert the values of the ArrayB[] (10 items) to be 1 if they match a value in ArrayA[] and 0 if they don't.
I have been trying various techniques for past 5 hours- would be great to get some guidance in what I can do to get this!
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我很了解你,这就是你正在寻找的:
如果不是,请详细说明!
If I understand you well, this is what you are looking for:
If not, please elaborate!