We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bccd553 commit 0cd9e61Copy full SHA for 0cd9e61
src/main/java/com/smlnskgmail/jaman/leetcodejava/easy/ThirdMaximumNumber.java
@@ -12,12 +12,12 @@ public ThirdMaximumNumber(int[] input) {
12
}
13
14
public int solution() {
15
+ Arrays.sort(input);
16
int n = input.length;
17
+ int last = input[n - 1];
18
if (n < 3) {
- return input[n - 1];
19
+ return last;
20
- Arrays.sort(input);
- int last = input[n - 1];
21
int target = last;
22
int counter = 2;
23
for (int i = n - 2; i >= 0; i--) {
0 commit comments