Pregunta de entrevista de Hughes Network Systems

Find a median of a unsorted array?Write in Python.

Respuesta de la entrevista

Anónimo

9 abr 2015

First sort the array using merge sort and then check the length of the array. If even , then mid element is the median or else find the average of the mid elements.