summaryrefslogtreecommitdiff
path: root/progs/a185.py
blob: c372b9ecf5b808fc358e17dd9b2278454d39137d (plain)
1
2
3
4
import bisect
def right_insertion(a, x):
    i = bisect.bisect_right(a, x)
    return i