-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenges.js
More file actions
108 lines (100 loc) · 3.1 KB
/
Copy pathchallenges.js
File metadata and controls
108 lines (100 loc) · 3.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* ======================== CallBacks Practice ============================ */
const each = (elements, cb) => {
// Iterates over a list of elements, yielding each in turn to the `cb` function.
// This only needs to work with arrays.
for (let i = 0; i < elements.length; i++) {
cb(elements[i], i);
}
};
const map = (elements, cb) => {
// Produces a new array of values by mapping each value in list through a transformation function (iteratee).
// Return the new array.
const newArr = [];
for (let i = 0; i < elements.length; i++) {
newArr.push(cb(elements[i]));
}
return newArr;
};
/* ======================== Closure Practice ============================ */
const limitFunctionCallCount = (cb, n) => {
// Should return a function that invokes `cb`.
// The returned function should only allow `cb` to be invoked `n` times.
let counter = 0;
return (...args) => {
if (counter < n) {
counter++;
return cb(...args);
}
return null;
};
};
const cacheFunction = (cb) => {
// Should return a function that invokes `cb`.
// A cache (object) should be kept in closure scope.
// The cache should keep track of all arguments have been used to invoke this function.
// If the returned function is invoked with arguments that it has already seen
// then it should return the cached result and not invoke `cb` again.
// `cb` should only ever be invoked once for a given set of arguments.
const cache = {};
return (...args) => {
const key = args;
if (!(key in cache)) {
const newVal = cb(...args);
cache[key] = newVal;
return newVal;
}
return cache.key;
};
};
/* eslint-enable no-unused-vars */
/* ======================== Recursion Practice ============================ */
const reverseStr = (str) => {
// reverse str takes in a string and returns that string in reversed order
// The only difference between the way you've solved this before and now is that you need to do it recursivley!
return str.split('').reverse().join('');
};
const newString = {
reverse: reverseStr('Challenge completed, will do better next time')
};
const checkMatchingLeaves = (obj) => {
// return true if every property on `obj` is the same
// otherwise return false
let val;
let results = true;
const check = (tree) => {
Object.keys(tree).forEach((key) => {
if (val === undefined && typeof key !== 'object') {
val = tree[key];
return undefined;
}
if (typeof tree[key] === 'object') return check(tree[key]);
if (tree[key] !== val) {
results = false;
}
});
};
check(obj);
return results;
};
const flatten = (elements) => {
// Flattens a nested array (the nesting can be to any depth).
// Example: flatten([1, [2], [3, [[4]]]]); => [1, 2, 3, 4];
let newArr = [];
for (let i = 0; i < elements.length; i++) {
if (Array.isArray(elements[i])) {
newArr = newArr.concat(flatten(elements[i]));
} else {
newArr.push(elements[i]);
}
}
return newArr;
};
module.exports = {
each,
map,
limitFunctionCallCount,
cacheFunction,
reverseStr,
checkMatchingLeaves,
flatten,
};