Skip to content

Commit 2a6b977

Browse files
refactor 2
1 parent 3319808 commit 2a6b977

File tree

1 file changed

+0
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-1
lines changed

src/main/java/com/fishercoder/solutions/_2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
3030
l2 = l2.next;
3131
}
3232
tmp.next = new ListNode(sum % 10);
33-
;
3433
tmp = tmp.next;
3534
}
3635
if (sum / 10 == 1) {

0 commit comments

Comments
 (0)