We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31e2f3c commit f9dac54Copy full SHA for f9dac54
160. Intersection of Two Linked Lists.java
@@ -20,7 +20,7 @@ public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
20
21
while (a != b) {
22
// Explenation:
23
- // Without knowing the length of eacg linked list,
+ // Without knowing the length of each linked list,
24
// we can move each pointer in a linked list
25
// perhaps, there is a difference length
26
// but it's not a big deal, because, everytime
0 commit comments