gpt4 book ai didi

arrays - 如何计算两个数组中的匹配项?

转载 作者:行者123 更新时间:2023-12-01 22:55:10 25 4
gpt4 key购买 nike

如果我有两个数组,如何计算匹配元素的数量?

例如与

x = [1,2,3,4,5]
y = [3,4,5,6]

我想获取三个匹配元素 345< 的计数 (3)/.

最佳答案

您可以使用 intersect :

julia> x = [1, 2, 3, 4, 5]
5-element Vector{Int64}:
1
2
3
4
5

julia> y = [3, 4, 5, 6]
4-element Vector{Int64}:
3
4
5
6

julia> intersect(Set(x), Set(y))
Set{Int64} with 3 elements:
5
4
3

julia> length(intersect(Set(x), Set(y)))
3

关于arrays - 如何计算两个数组中的匹配项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73449929/

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