[LeetCode] Maximum Matching of Players With Trainers

1 · · Sept. 17, 2022, 4:14 p.m.
2410. Maximum Matching of Players With Trainers You are given a 0-indexed integer array players, where players[i] represents the ability of the ith player. You are also given a 0-indexed integer array trainers, where trainers[j] represents the training capacity of the jth trainer. The ith player can match with the jth trainer if the player’s ability is less than or equal to the trainer’s training capacity. Additionally, the ith player can be matched with at most one trainer, and the jth trainer...