Codacy style changes for test files
This commit is contained in:
@ -2,5 +2,4 @@ const gcd = (...arr) => {
|
||||
const _gcd = (x, y) => (!y ? x : gcd(y, x % y));
|
||||
return [...arr].reduce((a, b) => _gcd(a, b));
|
||||
};
|
||||
|
||||
module.exports = gcd;
|
||||
module.exports = gcd;
|
||||
|
||||
Reference in New Issue
Block a user