diff options
author | L0P0P <grassoemanuele@live.com> | 2024-06-27 12:02:35 +0200 |
---|---|---|
committer | L0P0P <grassoemanuele@live.com> | 2024-06-27 12:02:35 +0200 |
commit | 3c4229fc9e0ec6da9a7f60b57b9e93c49d1b6b6c (patch) | |
tree | aca198eca62a0260a50ea59003c44a942e98f521 /progs/a745.py | |
parent | fb89b8c0885ee4e289cfb577bbabf0ee66b05024 (diff) |
Fixed a lot of problems from all the progs we need to parse
Diffstat (limited to 'progs/a745.py')
-rw-r--r-- | progs/a745.py | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/progs/a745.py b/progs/a745.py index 9a21dfa..e8ad671 100644 --- a/progs/a745.py +++ b/progs/a745.py @@ -1,15 +1,17 @@ -def find_rotation_count(A):
- (left, right) = (0, len(A) - 1)
- while left <= right:
- if A[left] <= A[right]:
- return left
- mid = (left + right) // 2
- next = (mid + 1) % len(A)
- prev = (mid - 1 + len(A)) % len(A)
- if A[mid] <= A[next] and A[mid] <= A[prev]:
- return mid
- elif A[mid] <= A[right]:
- right = mid - 1
- elif A[mid] >= A[left]:
- left = mid + 1
- return -1
\ No newline at end of file +# FIXME: unpacking assignment
+#
+# def find_rotation_count(A):
+# (left, right) = (0, len(A) - 1)
+# while left <= right:
+# if A[left] <= A[right]:
+# return left
+# mid = (left + right) // 2
+# next = (mid + 1) % len(A)
+# prev = (mid - 1 + len(A)) % len(A)
+# if A[mid] <= A[next] and A[mid] <= A[prev]:
+# return mid
+# elif A[mid] <= A[right]:
+# right = mid - 1
+# elif A[mid] >= A[left]:
+# left = mid + 1
+# return -1
\ No newline at end of file |