1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/rs/largest-positive-integer-that-exists-with-its-negative.rs
2024-05-02 23:37:39 +02:00

19 lines
372 B
Rust

use std::cmp;
use std::collections::HashSet;
impl Solution {
pub fn find_max_k(nums: Vec<i32>) -> i32 {
let mut seen = HashSet::<i32>::new();
let mut max_k = -1;
for x in &nums {
if seen.contains(&-x) {
max_k = cmp::max(max_k, x.abs());
}
seen.insert(*x);
}
max_k
}
}