Problem Description
Given a valid (IPv4) IP address, return a defanged version of that IP address. A defanged IP address replaces every period "." with "[.]".
Key Insights
- The input is guaranteed to be a valid IPv4 address.
- The main task is string manipulation, specifically replacing characters.
- The solution needs to handle each character in the string to ensure all periods are replaced.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input IP address. Each character is processed exactly once. Space Complexity: O(n), as we need to store the new defanged IP address.
Solution
The problem can be solved using a straightforward string manipulation approach. We can iterate through the characters of the input IP address and build a new string. For each character, if it is a period (.), we append "[.]" to the new string; otherwise, we append the character itself. This approach efficiently constructs the desired output.