Ad
  • Custom User Avatar

    Your solution falls into an infinite loop for following test case: assert.deepEqual(mergeArrays([ -3, -2, -1, 0 ], [ 1, 2, 3, 4 ]), [ -3, -2, -1, 0, 1, 2, 3, 4 ]);.
    Your solution has a bug, it's not a kata issue.