bisect.insort_left(a, x, lo=0, hi=len(a))
Insert x in a in sorted order. This is equivalent to a.insert(bisect.bisect_left(a, x, lo, hi), x)
assuming that a is already sorted. Keep in mind that the O(log n) search is dominated by the slow O(n) insertion step.
Please login to continue.