coding-exercises/interviews/match-ip-addresses
Felipe M 12f61545ac
added ip blacklist checker
2022-09-06 19:14:37 +02:00
..
README.md added ip blacklist checker 2022-09-06 19:14:37 +02:00
main.go added ip blacklist checker 2022-09-06 19:14:37 +02:00

README.md

IP Blacklist

Handle a IP blacklist structure in which you receive IP Addresses in the form of:

  1. Single IP: 10.0.0.1
  2. IP Range: 11.0.0.1-11.0.0.255
  3. IP CIDR: 12.0.0.0/16

And then you can check if a given IP matches any of those rules.