Merge Sort Divide Practice

Copy the numbers into the correct sublists as you split the list in half until you reach single-item lists.

Rule: always split into left half then right half (keep the original order).
Split 1: two lists of 4
Left half and right half
Split 2: four lists of 2
Split each list of 4 into two lists of 2
Split 3: eight single-item lists
Split each list of 2 into two singles