-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
82 lines (69 loc) · 1.19 KB
/
app.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*************************************************/
/* Ejercicio para entender objetos en JavaScript */
/*************************************************/
/* Aqui hay muchas maldades */
var window = window || global,
global = global || window;
var T = {
x: 8,
l: {
x: 2,
l: {
x: 8,
l: null,
r: null
},
r: {
x: 7,
l: null,
r: null
}
},
r: {
global: {
crazy: 22
},
x: 6,
l: null,
r: null,
d: [3, 4, 5],
o: {},
g: global,
w: window,
u: undefined,
t: true,
n: Object({
xn: 6
}),
s: String({
xn: 6
}),
f: Object([2, 3, 4]),
z: {
zn: [2]
}
}
};
/* Solucion */
function solution(T) {
/* Aqui hay que programar la solucion */
return count(T); // Recuerden retornar el valor
};
function count(s) {
if (typeof s == 'number') return 1;
if(!s) return 0;
if(s.length) return 0;
if (typeof s == 'object') {
var l = 0;
for(var i in s) {
l += count(s[i]);
}
return l;
}
return 0;
}
/* La parte mas obvia */
console.log(solution(T)); // La respuesta correcta es 7
/********************************************/
/* EL PRIMERO QUE LO SOLUCIONE TIENE PREMIO */
/********************************************/