- Notifications
You must be signed in to change notification settings - Fork 46.7k
/
Copy pathmodular_exponential.py
45 lines (33 loc) · 861 Bytes
/
modular_exponential.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
Modular Exponential.
Modular exponentiation is a type of exponentiation performed over a modulus.
For more explanation, please check
https://en.wikipedia.org/wiki/Modular_exponentiation
"""
"""Calculate Modular Exponential."""
defmodular_exponential(base: int, power: int, mod: int):
"""
>>> modular_exponential(5, 0, 10)
1
>>> modular_exponential(2, 8, 7)
4
>>> modular_exponential(3, -2, 9)
-1
"""
ifpower<0:
return-1
base%=mod
result=1
whilepower>0:
ifpower&1:
result= (result*base) %mod
power=power>>1
base= (base*base) %mod
returnresult
defmain():
"""Call Modular Exponential Function."""
print(modular_exponential(3, 200, 13))
if__name__=="__main__":
importdoctest
doctest.testmod()
main()