Question

Given the array [38, 27, 43, 3, 9, 82, 10], what would be the two sorted subarrays immediately *before the final merge step* in a Merge Sort algorithm?

A [3, 9, 10, 27] and [38, 43, 82]
B [27, 38] and [3, 9, 10, 43, 82]
C [3, 27, 38, 43] and [9, 10, 82]
D [3, 9, 27, 38] and [10, 43, 82]
E [3, 9, 10] and [27, 38, 43, 82]
Practice Next

Hey! Ask a query