相关信息:
LeetCode链接: https://leetcode-cn.com/problems/the-number-of-weak-characters-in-the-game/
代码:
import java.util.Arrays;
public class L1996 {
public static void main(String[] args) {
int[][] properties = { {4, 3},{10, 4}, {1, 2}};
Solution1996 solution1996 = new Solution1996();
int ans = solution1996.numberOfWeakCharacters(properties);
System.out.println(ans);
}
}
class Solution1996 {
public int numberOfWeakCharacters(int[][] properties) {
Arrays.sort(properties, (o1, o2) ->
o1[0] == o2[0] ? (o1[1] - o2[1]) : (o2[0] - o1[0])
);
int maxDef = 0;
int ans = 0;
for (int[] p : properties) {
if (maxDef > p[1]) {
ans++;
} else {
maxDef = p[1];
}
}
return ans;
}
}
|