gpt4 book ai didi

arrays - 与另一个数组中的元素匹配的第一个数组元素

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

我正在尝试返回给定数组中与预设数组中的元素匹配的第一个元素。我有这个:

def find_the_cheese(a)
cheese_types = ["cheddar", "gouda", "camembert"]
a.collect{|c| cheese_types.include?(c)}.include?(true)
end

但它返回 true 而不是括号中的 c 值。如何返回匹配的元素?

最佳答案

下面的代码将从 food 中返回包含在 cheese_types 中的元素

def find_the_cheese(food)
cheese_types = ["cheddar", "gouda", "camembert"]
food & cheese_types
end

关于arrays - 与另一个数组中的元素匹配的第一个数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34373993/

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