We're a place where coders share, stay up-to-date and grow their careers.
Ruby, and totally cheating by using it's IPAddr class :)
def ips_between(from, to) IPAddr.new(to).to_i - IPAddr.new(from).to_i end
This actually made me chuckle... lol cheating indeed 😁
And it was my first idea as well... IPv4 Addresses are 4byte integers... so the easiest way is to subtract them. 😎
Ruby, and totally cheating by using it's IPAddr class :)
This actually made me chuckle... lol cheating indeed 😁
And it was my first idea as well... IPv4 Addresses are 4byte integers... so the easiest way is to subtract them. 😎