-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.py
27 lines (27 loc) · 924 Bytes
/
Solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Solution:
def validIPAddress(self, IP: str) -> str:
if "." in IP:
segments = IP.split(".")
if len(segments) != 4:
return "Neither"
for segment in segments:
if (
not segment.isdigit()
or not 0 <= int(segment) <= 255
or (segment[0] == "0" and len(segment) > 1)
):
return "Neither"
return "IPv4"
elif ":" in IP:
segments = IP.split(":")
if len(segments) != 8:
return "Neither"
for segment in segments:
if (
not segment
or len(segment) > 4
or not all(c in string.hexdigits for c in segment)
):
return "Neither"
return "IPv6"
return "Neither"