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--) {