检查数组数组是否包含某个数组

这个问题在这里已经有了答案:

  • 在Ruby 23的答案中检查一个数组中是否存在一个值

  • Ruby的#include? 方法可以在这里使用:

    arr = [[1, 2], [3, 4], [4, 5]]
    arr.include?([1, 2])
    # => true
    

    希望这可以帮助!


    只需使用bigarray.include? smallarray bigarray.include? smallarray 。 这与您检查任何其他列表的会员资格的方式相同。 例

    链接地址: http://www.djcxy.com/p/25671.html

    上一篇: check if array of arrays contains some array

    下一篇: Checking if any element of an array satisfies a condition