我如何使用 Linq 来实现此目的?
假设我有以下数组:
int[] player = new int[5] { 1, 2, 3, 4, 4 };
int[] computer = new int[5] { 1, 1, 1, 3, 5 };
如何使用 Linq 查询来获取每个数字在每个集合中出现的次数?
Imagine I have the following arrays:
int[] player = new int[5] { 1, 2, 3, 4, 4 };
int[] computer = new int[5] { 1, 1, 1, 3, 5 };
How can I use a Linq query to fetch the amount of times each number is in each collection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将为您提供
player
数组中每个数字的频率,同样适用于computer
数组:This would give you the frequency of each number in the
player
array, same would work for thecomputer
array: