-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreduce.ts
22 lines (19 loc) · 807 Bytes
/
reduce.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const findOdd = (nums: number[]) => {
return nums.reduce((a, b) => a^b, 0)
};
const positiveSum = (arr: number[]): number => {
return arr.filter(x => x > 0).reduce((a, b) => a + b, 0);
};
const sumArray = (array: number[]): number => {
if (!array) return 0;
const max: number = array.reduce((a, b) => a > b ? a : b, -9999999999999);
const min: number = array.reduce((a, b) => a < b ? a : b, 9999999999999);
const sum: number = array.reduce((a, b) => a + b, 0);
return array.length === 1 ? 0 : sum - max - min;
};
const minDistance = (n: number): number => {
return [...Array(Math.floor(Math.sqrt(n)) + 1).keys()]
.map(x => x + 1)
.filter(x => n % x == 0)
.reduce((min, x, i, factors) => i > 0 ? Math.min(min, x - factors[i - 1]) : n - 1, n - 1);
};