Skip to content

Commit 03c5c9a

Browse files
authored
Added solution for 2410
1 parent 2c5f5d4 commit 03c5c9a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
impl Solution {
2+
// Sort vectors and loop through them in reverse order. If trainer is better or as good as player, count them and move to next (or previous) trainer/player. If trainer isn't as good as player, skip the player and move to the next (or previous)
3+
pub fn match_players_and_trainers(mut players: Vec<i32>, mut trainers: Vec<i32>) -> i32 {
4+
players.sort();
5+
trainers.sort();
6+
7+
let mut result = 0;
8+
let mut i = (trainers.len() as i32) - 1;
9+
let mut j = (players.len() as i32) - 1;
10+
11+
loop {
12+
if i == -1 || j == -1 {
13+
break;
14+
} else if trainers[i as usize] >= players[j as usize] {
15+
result += 1;
16+
i -= 1;
17+
j -= 1;
18+
} else {
19+
j -= 1;
20+
}
21+
}
22+
return result;
23+
}
24+
}

0 commit comments

Comments
 (0)