Skip to content

Instantly share code, notes, and snippets.

import heapq
import time
import random
import matplotlib.pyplot as plt
def Randomlist(length):
M = [random.random() for i in range(length)]
return M
def Median1(ListM1):