summaryrefslogtreecommitdiff
path: root/progs/a679.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a679.py')
-rw-r--r--progs/a679.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/progs/a679.py b/progs/a679.py
new file mode 100644
index 0000000..97472a6
--- /dev/null
+++ b/progs/a679.py
@@ -0,0 +1,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 \ No newline at end of file