It will be better to also have a `leastCommonMultiple` function for an array where I could pass an array of elements and get the result. ```js export default function leastCommonMultiple(a, b) { return ((a === 0) || (b === 0)) ? 0 : Math.abs(a * b) / euclideanAlgorithm(a, b); } ```
Activity
mukund1606 commentedon Jul 24, 2024
Can I work on this one?
abhiphile commentedon Jul 24, 2024
Yes Sure !
mukund1606 commentedon Jul 25, 2024
Created a PR for LCM on array of numbers
AnshDwivedi03 commentedon Sep 6, 2024
Can i work on it
Vertabrae1 commentedon Sep 18, 2024
1
Subhrajyoti842 commentedon Sep 23, 2024
Should I do it?