Fastest way to find a String into an array of string

前端 未结 5 1089
鱼传尺愫
鱼传尺愫 2021-02-12 18:10

The script has to verify if one predefined IP is present in a big array of IPs. Currently I code that function like this (saying that \"ips\" is my array of IP and \"ip\" is the

5条回答
  •  后悔当初
    2021-02-12 18:43

    A faster way would be:

    if ips.include?(ip)
      puts "ip exists"
      return 1
    else
      puts "ip doesn't exist"
      return nil
    end
    

提交回复
热议问题