mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 17:34:49 +08:00
Update binary_exponentiation.py
This commit is contained in:
@ -23,7 +23,7 @@ def b_expo(a, b):
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
||||||
def b_expo(a, b, c):
|
def b_expo_mod(a, b, c):
|
||||||
res = 1
|
res = 1
|
||||||
while b > 0:
|
while b > 0:
|
||||||
if b&1:
|
if b&1:
|
||||||
|
Reference in New Issue
Block a user