Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 313 Bytes

File metadata and controls

13 lines (9 loc) · 313 Bytes

Challenge Summary

to create function that sort an array ascending

Whiteboard Process

image

Approach & Efficiency

  • time O(nlog(n))
  • space O(n)

Solution

function that take an array and return the array with ascendining order using merge sort algorithm