[LeetCode] Largest Positive Integer That Exists With Its Negative

1 · · Oct. 16, 2022, 10:41 a.m.
2441. Largest Positive Integer That Exists With Its Negative 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. ...