forked from TheAlgorithms/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLowestCommonMultiple.ts
58 lines (46 loc) · 1.75 KB
/
LowestCommonMultiple.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* @function LowestCommonMultiple
* @description Determine the lowest common multiple of a group of numbers.
* @param {Number[]} nums - An array of numbers.
* @return {Number} - The lowest common multiple.
* @see https://www.mathsisfun.com/least-common-multiple.html
* @example LowestCommonMultiple(3, 4) = 12
* @example LowestCommonMultiple(8, 6) = 24
* @example LowestCommonMultiple(5, 8, 3) = 120
*/
import { greatestCommonFactor } from "./GreatestCommonFactor";
//A naive solution which requires no additional mathematical algorithm
export const naiveLCM = (nums: number[]): number => {
if (nums.some((num) => num < 0)) {
throw new Error("numbers must be positive to determine lowest common multiple");
}
if (nums.length === 0) {
throw new Error("at least one number must be passed in");
}
const max_num = Math.max(...nums);
let current_num = max_num;
while (true) {
if (nums.every((num) => current_num % num === 0)){
return current_num;
} else {
current_num += max_num;
}
}
}
//A typically more efficient solution which requires prior knowledge of GCF
//Note that due to utilizing GCF, which requires natural numbers, this method only accepts natural numbers.
export const binaryLCM = (a: number, b: number): number => {
if (a < 0 || b < 0) {
throw new Error("numbers must be positive to determine lowest common multiple");
}
if (!Number.isInteger(a) || !Number.isInteger(b)) {
throw new Error("this method, which utilizes GCF, requires natural numbers.");
}
return a * b / greatestCommonFactor([a, b]);
}
export const lowestCommonMultiple = (nums: number[]): number => {
if (nums.length === 0) {
throw new Error("at least one number must be passed in");
}
return nums.reduce(binaryLCM);
}