-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (48 loc) · 1.03 KB
/
index.js
File metadata and controls
62 lines (48 loc) · 1.03 KB
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
59
60
61
62
class SortedList {
constructor() {
this.items = [];
this.length = 0;
}
add(item) {
this.items.push(item);
this.items.sort((a, b) => a - b);
this.length = this.items.length;
}
get(pos) {
if (pos < 0 || pos > this.items.length) {
throw new Error("OutOfBounds");
}
return this.items[pos];
}
max() {
if (this.items.length === 0) {
throw new Error("EmptySortedList");
}
return Math.max(...this.items);
}
min() {
if (this.items.length === 0) {
throw new Error ("EmptySortedList");
}
return Math.min(...this.items);
}
sum() {
if (this.items.length === 0) {
return 0;
}
const total = this.items.reduce((acc, curr) => {
return acc + curr;
}, 0);
return total;
}
avg() {
if (this.items.length === 0) {
throw new Error("EmptySortedList");
}
const avg = this.items.reduce((acc, curr, index, arr) => {
return acc + (curr/arr.length);
}, 0);
return avg;
}
}
module.exports = SortedList;