Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 384 Bytes

File metadata and controls

19 lines (12 loc) · 384 Bytes

-go back

Code challenge: 26

Challenge Title

sort function and sort insert

Whiteboard Process

alt text

Approach & Efficiency

  • create a method that sorts a function based on the input array

Solution

after defining resolving some issues in the pseudo code:

the Time Complexity is = O(N^2)
the Space Complexity is = O(N)