MCPcopy 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

1def modularExponential(base, power, mod):
2 if power < 0:
3 return -1
4 base %= mod

Callers

nothing calls this directly

Calls 1

mainFunction · 0.70

Tested by

no test coverage detected