pub fn median(v: Vec<u64>) -> u64
Auxiliary function to calculate the median of a given Vec<u64>. The function sorts the vector internally.
Vec<u64>