Skip to content

Commit 512b19b

Browse files
authored
Added solution for 2540
1 parent a4bdf7f commit 512b19b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

02540. Minimum Common Value.rs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
use std::collections::HashSet;
2+
3+
impl Solution {
4+
// Create a HashSet for nums1. Then loop through num2 and keep a track of the smallest number from num2 that exists in num1. Initialize smallest_num variable to -1 so that if there is no match, it returns -1
5+
pub fn get_common(nums1: Vec<i32>, nums2: Vec<i32>) -> i32 {
6+
let mut nums1_hashset = HashSet::new();
7+
let mut smallest_num = -1;
8+
9+
for num in nums1 {
10+
nums1_hashset.insert(num.to_string());
11+
}
12+
13+
for num in nums2 {
14+
if nums1_hashset.contains(&num.to_string()) && (smallest_num == -1 || smallest_num > num) {
15+
smallest_num = num;
16+
}
17+
}
18+
19+
return smallest_num;
20+
}
21+
}

0 commit comments

Comments
 (0)