From 6fac1c628aeb92be3d86299e601a71615fc09b3b Mon Sep 17 00:00:00 2001 From: Sahishnu <9358407+sahishnu@users.noreply.github.com> Date: Mon, 1 Apr 2019 14:25:53 -0400 Subject: [PATCH] Update index.md (#31974) --- guide/english/algorithms/exponentiation/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/algorithms/exponentiation/index.md b/guide/english/algorithms/exponentiation/index.md index 936ceb6458..c32ca84488 100644 --- a/guide/english/algorithms/exponentiation/index.md +++ b/guide/english/algorithms/exponentiation/index.md @@ -56,3 +56,6 @@ int power(int x, unsigned int y, int p) { } ``` Time Complexity: O(Log y). + +#### More Information: +- [Basic Fundamentals](https://mathinsight.org/exponentiation_basic_rules)