-
Notifications
You must be signed in to change notification settings - Fork 0
/
HK3.js
45 lines (41 loc) · 1.21 KB
/
HK3.js
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
function plusMinus(arr) {
let positivos = 0
let negativos = 0
let zeros = 0
for(let i = 0; i< arr.length; i++){
let valor= arr[i]
if(valor > 0){
positivos++
}else if(valor < 0){
negativos++
}else if(valor == 0){
zeros++
}
}
let ratioPos = positivos / arr.length;
let ratioNeg = negativos / arr.length;
let ratioZero = zeros / arr.length;
let fixedPositivos = ratioPos.toFixed(6);
let fixedNegativos = ratioNeg.toFixed(6);
let fixedZeros = ratioZero.toFixed(6);
console.log(fixedPositivos)
console.log(fixedNegativos)
console.log(fixedZeros)
}
/////Mejora
function plusMinus(arr) {
let valoresCalculados = [0,0,0]
arr.forEach(element => {
if(element > 0){
valoresCalculados[0] = valoresCalculados[0] + 1
}else if(element < 0){
valoresCalculados[1] = valoresCalculados[1] + 1
}else if(element == 0){
valoresCalculados[2] = valoresCalculados[2] + 1
}
});
valoresCalculados
.map(element => element/arr.length)
.map(element => element.toFixed(6))
.forEach(element => console.log(element))
}