summaryrefslogtreecommitdiff
path: root/progs/a679.py
blob: 97472a64e6f18798081d6646624cc94f620db29d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def find_last_occurrence(A, x):
    (left, right) = (0, len(A) - 1)
    result = -1
    while left <= right:
        mid = (left + right) // 2
        if x == A[mid]:
            result = mid
            left = mid + 1
        elif x < A[mid]:
            right = mid - 1
        else:
            left = mid + 1
    return result