Skip to content

Commit 70af98f

Browse files
authored
remove extra line
1 parent 23adcb4 commit 70af98f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Algorithms/Easy/414_ThirdMaximumNumber/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ public int thirdMax(int[] nums) {
44
long max2 = -2147483649l;
55
long max3 = -2147483649l;
66

7-
87
for (int i = 0; i < nums.length; i++) {
98
if (nums[i] > max1) {
109
max3 = max2;

0 commit comments

Comments
 (0)