Skip to content

Commit 0393c5a

Browse files
authored
Update binary_exponentiation.py
1 parent f5917f5 commit 0393c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

other/binary_exponentiation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def b_expo(a, b):
2323
return res
2424

2525

26-
def b_expo(a, b, c):
26+
def b_expo_mod(a, b, c):
2727
res = 1
2828
while b > 0:
2929
if b&1:

0 commit comments

Comments
 (0)