I'm writing a script at the moment and at one point, the scripts has to verify if one predefined IP is present in a big array of IPs. At this point, I would code that function like this (saying that "ips" is my array of IP and "ip" is the predefined ip)
ips.each do |existsip|
if ip == existsip
puts "ip exists"
return 1
end
end
puts "ip doesn't exist"
return nil
But now my question is : Is there a faster way to do the same thing?
My solution doesn't seem to be really fast :(
Edit : I might have wrongly expressed myself. I can do array.include? but what I'd like to know is : Is array.include? the method that will give me the fastest result?

include?method defined in classArrayto make this operation look neater, I am not sure if it will increase the speed of the lookup much – Hunter McMillen Feb 16 '12 at 15:30