468. Validate IP Address

Link: https://leetcode.com/problems/validate-ip-address/

Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither.

IPv4addresses are canonically represented in dot-decimal notation, which consists of four decimal numbers, each ranging from 0 to 255, separated by dots ("."), e.g.,172.16.254.1;

Besides, leading zeros in the IPv4 is invalid. For example, the address172.16.254.01is invalid.

IPv6addresses are represented as eight groups of four hexadecimal digits, each group representing 16 bits. The groups are separated by colons (":"). For example, the address2001:0db8:85a3:0000:0000:8a2e:0370:7334is a valid one. Also, we could omit some leading zeros among four hexadecimal digits and some low-case characters in the address to upper-case ones, so2001:db8:85a3:0:0:8A2E:0370:7334is also a valid IPv6 address(Omit leading zeros and using upper cases).

However, we don't replace a consecutive group of zero value with a single empty group using two consecutive colons (::) to pursue simplicity. For example,2001:0db8:85a3::8A2E:0370:7334is an invalid IPv6 address.

Besides, extra leading zeros in the IPv6 is also invalid. For example, the address02001:0db8:85a3:0000:0000:8a2e:0370:7334is invalid.

Note:You may assume there is no extra space or special characters in the input string.

Example 1:

Input:
 "172.16.254.1"

Output:
 "IPv4"

Explanation:
 This is a valid IPv4 address, return "IPv4".

Example 2:

Input:
 "2001:0db8:85a3:0:0:8A2E:0370:7334"

Output:
 "IPv6"

Explanation:
 This is a valid IPv6 address, return "IPv6".

Example 3:

Input:
 "256.256.256.256"

Output:
 "Neither"

Explanation:
 This is neither a IPv4 address nor a IPv6 address.

class Solution(object):
    def validIPAddress(self, IP):
        """
        :type IP: str
        :rtype: str
        """
        if not IP:
            return 'Neither'

        if '.' in IP and self.is_IPv4(IP):
            return 'IPv4'
        elif ':' in IP and self.is_IPv6(IP):
            return 'IPv6'
        else:
            return 'Neither'

    def is_IPv4(self, s):
        period_indexes = []
        for i in xrange(len(s)):
            c = s[i]
            if not ('0' <= c <= '9' or c == '.'):
                return False
            if c == '.':
                period_indexes.append(i)

        if len(period_indexes) != 3:
            return False

        for i in xrange(len(period_indexes)):
            index = period_indexes[i]
            if i == 0:
                segment = s[:index]
            elif i == len(period_indexes) - 1:
                segment = s[index + 1:]
            else:
                segment = s[period_indexes[i - 1] + 1:index]

            if not self.is_valid_ipv4_segment(segment):
                return False

        return True

    def is_valid_ipv4_segment(self, segment):
        if not segment or int(segment) > 255:
            return False

        return segment == '0' or segment[0] != '0'

    def is_IPv6(self, s):
        colons_indexes = []
        for i in xrange(len(s)):
            c = s[i]
            if not ('0' <= c <= '9' or 'a' <= c <= 'f' or 'A' <= c <= 'F' or c == ':'):
                return False
            if c == ':':
                colons_indexes.append(i)

        if len(colons_indexes) != 7:
            return False

        for i in xrange(len(colons_indexes)):
            index = colons_indexes[i]
            if i == 0:
                segment = s[:index]
            elif i == len(colons_indexes) - 1:
                segment = s[index + 1:]
            else:
                segment = s[colons_indexes[i - 1] + 1:index]

            if not self.is_valid_ipv6_segment(segment):
                return False

        return s[0] != '0'

    def is_valid_ipv6_segment(self, segment):
        if not segment or len(segment) > 4:
            return False

        return True

Note:

  • The "2001:0db8:85a3:0:0:8A2E:0370:7334" is a valid IPv6, even though there is some leading zero in some segments (those segments are not the first segment).
  • The "0201:0db8:85a3:0:0:8A2E:0370:7334" is an invalid IPv6, because its first char is '0', which is a leading zero.

results matching ""

    No results matching ""