Skip to content

Commit f9dac54

Browse files
committed
commit
1 parent 31e2f3c commit f9dac54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

160. Intersection of Two Linked Lists.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
2020

2121
while (a != b) {
2222
// Explenation:
23-
// Without knowing the length of eacg linked list,
23+
// Without knowing the length of each linked list,
2424
// we can move each pointer in a linked list
2525
// perhaps, there is a difference length
2626
// but it's not a big deal, because, everytime

0 commit comments

Comments
 (0)