From d7e8bf492d039f3730541708f72b87ab269288e4 Mon Sep 17 00:00:00 2001 From: Suryapratap Singh Date: Tue, 31 Aug 2021 03:33:35 +0530 Subject: [PATCH] fix types error in GetGCD method --- Maths/GetGCD.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Maths/GetGCD.js b/Maths/GetGCD.js index a9090368a..0efa695ed 100644 --- a/Maths/GetGCD.js +++ b/Maths/GetGCD.js @@ -13,7 +13,6 @@ */ const getGcd = (arg1, arg2) => { // Find a minimum of both numbers. - let less = arg1 > arg2 ? arg2 : arg1 // Iterate the number and find the gcd of the number using the above explanation. for (less; less >= 2; less--) {