检查数组数组是否包含某个数组
这个问题在这里已经有了答案:
Ruby的#include?
方法可以在这里使用:
arr = [[1, 2], [3, 4], [4, 5]]
arr.include?([1, 2])
# => true
希望这可以帮助!
只需使用bigarray.include? smallarray
bigarray.include? smallarray
。 这与您检查任何其他列表的会员资格的方式相同。 例
上一篇: check if array of arrays contains some array
下一篇: Checking if any element of an array satisfies a condition