mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-18 16:27:02 +00:00
Update binary_exponentiation.py
This commit is contained in:
parent
f5917f589c
commit
0393c5ad38
|
@ -23,7 +23,7 @@ def b_expo(a, b):
|
|||
return res
|
||||
|
||||
|
||||
def b_expo(a, b, c):
|
||||
def b_expo_mod(a, b, c):
|
||||
res = 1
|
||||
while b > 0:
|
||||
if b&1:
|
||||
|
|
Loading…
Reference in New Issue
Block a user