Skip to content

Commit b7ad44a

Browse files
committed
Maximum Depth of Binary Tree solution
1 parent 5f7a92b commit b7ad44a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

merge-two-sorted-lists/kimjunyoung90.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,3 @@ public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
1515
}
1616
}
1717
}
18-
19-
class ListNode {
20-
int val;
21-
ListNode next;
22-
ListNode() {}
23-
ListNode(int val) { this.val = val; }
24-
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
25-
}

0 commit comments

Comments
 (0)