Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/subbarayudu-j/TheAlgorithms-Python
/ modular_exponential.py
File
modular_exponential.py
maths/modular_exponential.py:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
def
modularExponential(base, power, mod):
2
if
power < 0:
3
return
-1
4
base %= mod
Callers
nothing calls this directly
Calls
1
main
Function · 0.70
Tested by
no test coverage detected