Skip to content

Commit 562b0e4

Browse files
authored
Update Solution.java
1 parent f3ac886 commit 562b0e4

File tree

1 file changed

+1
-3
lines changed
  • src/main/java/g2401_2500/s2432_the_employee_that_worked_on_the_longest_task

1 file changed

+1
-3
lines changed

src/main/java/g2401_2500/s2432_the_employee_that_worked_on_the_longest_task/Solution.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
public class Solution {
66
public int hardestWorker(int[][] logs) {
7-
int result;
87
int i;
98
int max;
109
int tid;
@@ -23,7 +22,6 @@ public int hardestWorker(int[][] logs) {
2322
tid = logs[i][0];
2423
}
2524
}
26-
result = tid;
27-
return result;
25+
return tid;
2826
}
2927
}

0 commit comments

Comments
 (0)