From 1a405145f478dc5db9e6bf7659156c51b804fd60 Mon Sep 17 00:00:00 2001 From: Shri Prakash Bajpai <68155959+Shri2206@users.noreply.github.com> Date: Thu, 22 Oct 2020 03:03:00 +0530 Subject: [PATCH] Update modular_exponentiation.cpp --- math/modular_exponentiation.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/math/modular_exponentiation.cpp b/math/modular_exponentiation.cpp index 6f133b700..9c8dcf4cd 100644 --- a/math/modular_exponentiation.cpp +++ b/math/modular_exponentiation.cpp @@ -30,7 +30,6 @@ namespace math { * @param c integer modulo * @return a raised to power b modulo c */ - uint64_t power(uint64_t a, uint64_t b, uint64_t c) { uint64_t ans = 1; /// Initialize the answer to be returned