public/subjects/valid-ip
xpetit def316d0f3
Reformat markdown (with prettier)
2021-04-27 21:04:54 +02:00
..
README.md Reformat markdown (with prettier) 2021-04-27 21:04:54 +02:00

README.md

Valid Ip

Instructions

Write a function called findIP that returns array of valid IPs, with or without a port, in a string passed as parameter

A valid IP has the following format :

  • Must be in the form of xxx.xxx.xxx.xxx
  • xxx is a number from 0-255
  • You cannot have a 0 before a number, example 0xx

Notions