forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1133.java
57 lines (54 loc) · 1.44 KB
/
_1133.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.fishercoder.solutions;
import java.util.TreeMap;
/**
* 1133. Largest Unique Number
*
* Given an array of integers A, return the largest integer that only occurs once.
* If no integer occurs once, return -1.
*
* Example 1:
* Input: [5,7,3,9,4,9,8,3,1]
* Output: 8
* Explanation:
* The maximum integer in the array is 9 but it is repeated. The number 8 occurs only once, so it's the answer.
*
* Example 2:
* Input: [9,9,8,8]
* Output: -1
* Explanation:
* There is no number that occurs only once.
*
* Note:
* 1 <= A.length <= 2000
* 0 <= A[i] <= 1000
* */
public class _1133 {
public static class Solution1 {
public int largestUniqueNumber(int[] A) {
TreeMap<Integer, Integer> treeMap = new TreeMap<>((a, b) -> b - a);
for (int num : A) {
treeMap.put(num, treeMap.getOrDefault(num, 0) + 1);
}
for (int key : treeMap.keySet()) {
if (treeMap.get(key) == 1) {
return key;
}
}
return -1;
}
}
public static class Solution2 {
public int largestUniqueNumber(int[] A) {
int[] count = new int[1001];
for (int num : A) {
count[num]++;
}
for (int i = 1000; i >= 0; i--) {
if (count[i] == 1) {
return i;
}
}
return -1;
}
}
}