gpt4 book ai didi

c# - AND 在 c# 中的两个整数列表之间

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:03 25 4
gpt4 key购买 nike

我需要在 C# 中的两个整数列表之间进行 AND敌人的例子,如果我有

IList<int> list1 = new List<int>(1,2,7,4);

IList<int> list2 = new List<int>(4,2,3,5);

我需要这个输出 list 3 = list 1 & list 2;然后list3 项目是 2,4;

最佳答案

你可以做到 list1.Intersect(list2) .

由于此函数计算交集集合Intersect 只返回不同的元素,所以{1,2,2}.Intersect({1,2} ) => {1,2}.

关于c# - AND 在 c# 中的两个整数列表之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7945726/

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