Skip to content

Commit 0cd9e61

Browse files
authored
2022-09-19 update: updated "Third Maximum Number" (#111)
1 parent bccd553 commit 0cd9e61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/smlnskgmail/jaman/leetcodejava/easy/ThirdMaximumNumber.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ public ThirdMaximumNumber(int[] input) {
1212
}
1313

1414
public int solution() {
15+
Arrays.sort(input);
1516
int n = input.length;
17+
int last = input[n - 1];
1618
if (n < 3) {
17-
return input[n - 1];
19+
return last;
1820
}
19-
Arrays.sort(input);
20-
int last = input[n - 1];
2121
int target = last;
2222
int counter = 2;
2323
for (int i = n - 2; i >= 0; i--) {

0 commit comments

Comments
 (0)