Fastest way to find a String into an array of string

前端 未结 5 1671
被撕碎了的回忆
被撕碎了的回忆 2021-02-12 18:18

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:28

    A faster way would be:

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

提交回复
热议问题