Problem Description
Given an integer array nums
that does not contain any zeros, find the largest positive integer k
such that -k
also exists in the array. Return the positive integer k
. If there is no such integer, return -1
.
Key Insights
- The problem requires finding a positive integer whose negative counterpart exists in the array.
- A set can be used to efficiently check for the existence of negative values.
- The algorithm should prioritize finding the largest positive integer.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can utilize a hash set to store all the integers from the array. Then, we will iterate through the array to check for each positive integer if its negative counterpart exists in the set. We track the largest valid positive integer found during this process. If no valid integer is found, we return -1.
- Create a set to store all integers from the
nums
array. - Initialize a variable to keep track of the largest positive integer found.
- Iterate through the
nums
array:- If the current number is positive and its negative counterpart is in the set, update the largest positive integer if the current number is greater than the previously found largest.
- Return the largest positive integer found, or -1 if none exists.