fix : according lint rules

This commit is contained in:
CarlosZoft
2022-02-15 14:47:07 -03:00
parent efaabc3e2f
commit 98fe5a7a2d

View File

@@ -27,7 +27,8 @@ using namespace std;
* @returns the modular inverse
*/
int imod(int x, int y) {
int aux, itr = 0;
int aux;
int itr = 0;
do { // run the algorithm while not find the inverse
aux = y * itr + 1;