1395. Count Number of Teams
https://leetcode.com/problems/count-number-of-teams/
Input: rating = [2,5,3,4,1]
Output: 3
Explanation: We can form three teams given the conditions. (2,3,4), (5,4,1), (5,3,1). Input: rating = [2,1,3]
Output: 0
Explanation: We can't form any team given the conditions.Input: rating = [1,2,3,4]
Output: 4Last updated