gpt4 book ai didi

c# - 使用linq查找不相交的数据集

转载 作者:IT王子 更新时间:2023-10-29 04:41:41 26 4
gpt4 key购买 nike

List<int> a = 1,2,3
List<int> b = 2,4,5

output
1,3,4,5

最佳答案

诀窍是使用 Except与两个列表的交集。

这应该为您提供非交叉元素的列表:

var nonIntersecting = a.Union(b).Except(a.Intersect(b));

关于c# - 使用linq查找不相交的数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/712198/

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