Skip to content

Commit 7ab6978

Browse files
committed
fix/0021-merge-two-sorted-lists.js : fixed failing condition
1 parent ba38a33 commit 7ab6978

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

javascript/0021-merge-two-sorted-lists.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,11 @@ var mergeTwoLists = function(list1, list2) {
3939

4040
while (list1 && list2) {/* Time O(N + M) */
4141
const isL2Greater = list1.val <= list2.val;
42-
const isL2Less = list2.val < list1.val;
4342

4443
if (isL2Greater) {
4544
tail.next = list1;
4645
list1 = list1.next;
47-
}
48-
49-
if (isL2Less) {
46+
} else {
5047
tail.next = list2;
5148
list2 = list2.next;
5249
}

0 commit comments

Comments
 (0)