gpt4 book ai didi

c# - 与 LINQ 中的集合集合相交

转载 作者:太空狗 更新时间:2023-10-29 19:59:08 26 4
gpt4 key购买 nike

我有一个要相交的列表列表:

List<List<int>> input = new List<List<int>>();
input.Add(new List<int>() { 1, 2, 4, 5, 8 });
input.Add(new List<int>() { 3, 4, 5 });
input.Add(new List<int>() { 1, 4, 5, 6 });

输出应该是:

{ 4, 5 }

如何以简洁的方式实现这一点?

最佳答案

var result = input.Cast<IEnumerable<int>>().Aggregate((x, y) => x.Intersect(y))

关于c# - 与 LINQ 中的集合集合相交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2532003/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com