Validate IP Address - Problem

Given a string queryIP, return "IPv4" if IP is a valid IPv4 address, "IPv6" if IP is a valid IPv6 address or "Neither" if IP is not a correct IP of any type.

A valid IPv4 address is an IP in the form "x1.x2.x3.x4" where 0 <= xi <= 255 and xi cannot contain leading zeros. For example, "192.168.1.1" and "192.168.1.0" are valid IPv4 addresses while "192.168.01.1", "192.168.1.00", and "192.168@1.1" are invalid IPv4 addresses.

A valid IPv6 address is an IP in the form "x1:x2:x3:x4:x5:x6:x7:x8" where:

  • 1 <= xi.length <= 4
  • xi is a hexadecimal string which may contain digits, lowercase English letter ('a' to 'f') and upper-case English letters ('A' to 'F').
  • Leading zeros are allowed in xi.

For example, "2001:0db8:85a3:0000:0000:8a2e:0370:7334" and "2001:db8:85a3:0:0:8A2E:0370:7334" are valid IPv6 addresses, while "2001:0db8:85a3::8A2E:037j:7334" and "02001:0db8:85a3:0000:0000:8a2e:0370:7334" are invalid IPv6 addresses.

Input & Output

Example 1 — Valid IPv4
$ Input: queryIP = "192.168.1.1"
Output: "IPv4"
💡 Note: Valid IPv4: 4 segments separated by dots, each segment is 0-255 with no leading zeros
Example 2 — Valid IPv6
$ Input: queryIP = "2001:0db8:85a3:0:0:8A2E:0370:7334"
Output: "IPv6"
💡 Note: Valid IPv6: 8 segments separated by colons, each segment is 1-4 hexadecimal characters
Example 3 — Invalid Format
$ Input: queryIP = "256.256.256.256"
Output: "Neither"
💡 Note: Invalid IPv4: segment 256 exceeds maximum value of 255

Constraints

  • queryIP consists only of English letters, digits and the characters '.' and ':'.

Visualization

Tap to expand
Validate IP Address INPUT queryIP = "192.168.1.1" Split by delimiter "." 192 168 1 1 x1 x2 x3 x4 IP Format Detection: Contains "." --> Check IPv4 Contains ":" --> Check IPv6 4 segments found [OK] ALGORITHM STEPS 1 Detect IP Type Check for "." or ":" delimiter 2 Split String IPv4: 4 parts, IPv6: 8 parts 3 Validate Each Part Check range and format 4 Return Result "IPv4", "IPv6", or "Neither" IPv4 Validation Rules: - No leading zeros (01 invalid) - Range: 0-255 - Only digits allowed - Non-empty segments - Exactly 4 segments FINAL RESULT Segment Validation: 192 [OK] 0-255 168 [OK] 0-255 1 [OK] 0-255 1 [OK] 0-255 All 4 segments valid! Output: "IPv4" Valid IPv4 address confirmed 192.168.1.1 is a private IP Key Insight: Split and Validate approach: First detect IP type by delimiter ("." for IPv4, ":" for IPv6), then split the string and validate each segment independently. IPv4 needs numeric 0-255 check with no leading zeros. IPv6 needs hex validation with 1-4 chars per segment. Time: O(n), Space: O(1). TutorialsPoint - Validate IP Address | Split and Validate Approach
Asked in
Facebook 35 Microsoft 28 Amazon 22
28.0K Views
Medium Frequency
~15 min Avg. Time
850 Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen