Welcome to Subscribe On Youtube
Formatted question description: https://leetcode.ca/all/468.html
468. Validate IP Address (Medium)
Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither.
IPv4 addresses 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 address 172.16.254.01
is invalid.
IPv6 addresses are represented as eight groups of four hexadecimal digits, each group representing 16 bits. The groups are separated by colons (":"). For example, the address 2001:0db8:85a3:0000:0000:8a2e:0370:7334
is 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, so 2001:db8:85a3:0:0:8A2E:0370:7334
is 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:7334
is an invalid IPv6 address.
Besides, extra leading zeros in the IPv6 is also invalid. For example, the address 02001:0db8:85a3:0000:0000:8a2e:0370:7334
is 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.
Related Topics:
String
Similar Questions:
Solution 1.
-
class Solution { public String validIPAddress(String IP) { if (IP.indexOf('.') >= 0) return isValidIPv4(IP) ? "IPv4" : "Neither"; else if (IP.indexOf(':') >= 0) return isValidIPv6(IP) ? "IPv6" : "Neither"; else return "Neither"; } public boolean isValidIPv4(String ip) { int ipLength = ip.length(); if (ip.charAt(0) == '.' || ip.charAt(ipLength - 1) == '.') return false; if (ip.indexOf('+') >= 0 || ip.indexOf('-') >= 0) return false; String[] array = ip.split("\\."); if (array.length != 4) return false; int length = array.length; for (int i = 0; i < length; i++) { String numStr = array[i]; if (numStr.length() == 0 || numStr.length() > 3 || numStr.length() > 1 && numStr.charAt(0) == '0') return false; try { int num = Integer.parseInt(numStr); if (num > 255) return false; } catch (NumberFormatException ex) { return false; } } return true; } public boolean isValidIPv6(String ip) { int ipLength = ip.length(); if (ip.charAt(0) == ':' || ip.charAt(ipLength - 1) == ':') return false; String[] array = ip.split(":"); if (array.length != 8) return false; int length = array.length; for (int i = 0; i < length; i++) { String numStr = array[i]; if (numStr.length() == 0 || numStr.length() > 4) return false; int curLength = numStr.length(); for (int j = 0; j < curLength; j++) { char c = numStr.charAt(j); if (Character.isDigit(c)) continue; else if (Character.isLetter(c)) { if (c > 'F' && c < 'a' || c > 'f') return false; } else return false; } } return true; } }
-
// OJ: https://leetcode.com/explore/challenge/card/june-leetcoding-challenge/541/week-3-june-15th-june-21st/3362/ // Time: O(N) // Space: O(1) class Solution { bool isValidIPv6(string &IP) { int i = 0, N = IP.size(), segment = 0; while (i < N) { int cnt = 0; while (i < N && (isdigit(IP[i]) || (IP[i] >= 'a' && IP[i] <= 'f') || (IP[i] >= 'A' && IP[i] <= 'F'))) { ++i; if (++cnt > 4) return false; } if (cnt == 0) return false; ++segment; if (segment < 8) { if (i >= N || IP[i] != ':') return false; ++i; } else if (segment > 8) return false; } return segment == 8; } bool isValidIPv4(string &IP) { int i = 0, N = IP.size(), segment = 0; while (i < N) { int num = 0, digit = 0; bool leadingZero = i < N && IP[i] == '0'; while (i < N && isdigit(IP[i])) { num = num * 10 + (IP[i++] - '0'); ++digit; if (digit > 3 || num > 255) return false; } if (digit == 0) return false; ++segment; if (leadingZero && (num != 0 || digit != 1)) return false; if (segment < 4) { if (i >= N || IP[i] != '.') return false; ++i; } else if (segment > 4) return false; } return segment == 4; } public: string validIPAddress(string IP) { if (isValidIPv4(IP)) return "IPv4"; if (isValidIPv6(IP)) return "IPv6"; return "Neither"; } };
-
class Solution(object): def validIPAddress(self, IP): """ :type IP: str :rtype: str """ nums = [str(i) for i in range(0, 10)] letters = ["a", "b", "c", "d", "e", "f", "A", "B", "C", "D", "E", "F"] v6d = set(nums + letters) v4d = set(nums) v4 = IP.split(".") v6 = IP.split(":") if len(v4) == 4: for seg in v4: if seg == "" or (seg[0] == "0" and len(seg) > 1): return "Neither" for c in seg: if c not in v4d: return "Neither" if int(seg) > 255: return "Neither" return "IPv4" elif len(v6) == 8: for seg in v6: if len(seg) == 0 or len(seg) > 4: return "Neither" for c in seg: if c not in v6d: return "Neither" return "IPv6" return "Neither"
-
function validIPAddress(queryIP: string): string { const isIPv4 = () => { const ss = queryIP.split('.'); if (ss.length !== 4) { return false; } for (const s of ss) { const num = Number(s); if (num < 0 || num > 255 || num + '' !== s) { return false; } } return true; }; const isIPv6 = () => { const ss = queryIP.split(':'); if (ss.length !== 8) { return false; } for (const s of ss) { if (s.length === 0 || s.length > 4) { return false; } for (const c of s) { if ( (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F') ) { continue; } return false; } } return true; }; if (isIPv4()) { return 'IPv4'; } if (isIPv6()) { return 'IPv6'; } return 'Neither'; }
-
impl Solution { fn is_IPv4(s: &String) -> bool { let ss = s.split('.').collect::<Vec<&str>>(); if ss.len() != 4 { return false; } for s in ss { match s.parse::<i32>() { Err(_) => return false, Ok(num) => { if num < 0 || num > 255 || num.to_string() != s.to_string() { return false; } } } } true } fn is_IPv6(s: &String) -> bool { let ss = s.split(':').collect::<Vec<&str>>(); if ss.len() != 8 { return false; } for s in ss { if s.len() == 0 || s.len() > 4 { return false; } for &c in s.as_bytes() { if c >= b'0' && c <= b'9' || c >= b'a' && c <= b'f' || c >= b'A' && c <= b'F' { continue; } return false; } } true } pub fn valid_ip_address(query_ip: String) -> String { if Self::is_IPv4(&query_ip) { return String::from("IPv4"); } if Self::is_IPv6(&query_ip) { return String::from("IPv6"); } String::from("Neither") } }