-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05-highorderfunctions.js
More file actions
398 lines (331 loc) · 8.33 KB
/
05-highorderfunctions.js
File metadata and controls
398 lines (331 loc) · 8.33 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
// CAP 5 - HIGHER-ORDER FUNCTIONS
// 1
let total = 0, count = 1;
while (count <= 10) {
total += count;
count += 1;
}
console.log(total);
// 2
console.log(sum(range(1, 10)));
// Abstracting Repetition
// 3
for (let i = 0; i < 10; i++) {
console.log(i);
}
// 4
function repeatLog(n) {
for (let i = 0; i < n; i++) {
console.log(i);
}
}
// 5
function repeat(n, action) {
for (let i = 0; i < n; i++) {
action(i);
}
}
repeat(3, console.log);
// ! 0
// ! 1
// ! 2
// 6
let labels = [];
repeat(5, i => {
labels.push(`Unit ${i + 1}`);
});
console.log(labels);
// ! ["Unit 1", "Unit 2", "Unit 3", "Unit 4", "Unit 5"]
//Higher-Order Functions
// 7
function greaterThan(n) {
return m => m > n;
}
let greaterThan10 = greaterThan(10);
console.log(greaterThan10(11));
// ! true
// 8
function noisy(f) {
return (...args) => {
console.log("calling with", args);
let result = f(...args);
console.log("called with", args, ", returned", result);
return result;
};
}
noisy(Math.min)(3, 2, 1);
// ! calling with [3, 2, 1]
// ! called with [3, 2, 1] , returned 1
// 9
function unless(test, then) {
if (!test) then();
}
repeat(3, n => {
unless(n % 2 == 1, () => {
console.log(n, "is even");
});
});
// ! 0 is even
// ! 2 is even
// 10
["A", "B"].forEach(l => console.log(l));
// ! A
// ! B
//Script Data Set
// 11
// {
// name: "Coptic",
// ranges: [[994, 1008], [11392, 11508], [11513, 11520]],
// direction: "ltr",
// year: -200,
// living: false,
// link: "https://en.wikipedia.org/wiki/Coptic_alphabet"
// }
// Filtering Arrays
// 12
function filter(array, test) {
let passed = [];
for (let element of array) {
if (test(element)) {
passed.push(element);
}
}
return passed;
}
console.log(filter(SCRIPTS, script => script.living));
// ! [{name: "Adlam", ...}, ...]
// 13
console.log(SCRIPTS.filter(s => s.direction == "ttb"));
// ! [{name: "Mongolian", ...}, ...]
// Transforming with map
// 14
function map(array, transform) {
let mapped = [];
for (let element of array) {
mapped.push(transform(element));
}
return mapped;
}
let rtlScripts = SCRIPTS.filter(s => s.direction == "rtl");
console.log(map(rtlScripts, s => s.name));
// ! ["Adlam", "Arabic", "Imperial Aramaic", ...]
// Summarizing with reduce
// 15
function reduce(array, combine, start) {
let current = start;
for (let element of array) {
current = combine(current, element);
}
return current;
}
console.log(reduce([1, 2, 3, 4], (a, b) => a + b, 0));
// ! 10
// 16
console.log([1, 2, 3, 4].reduce((a, b) => a + b));
// ! 10
// 17
function characterCount(script) {
return script.ranges.reduce((count, [from, to]) => {
return count + (to - from);
}, 0);
}
console.log(SCRIPTS.reduce((a, b) => {
return characterCount(a) < characterCount(b) ? b : a;
}));
// ! {name: "Han", ...}
// Composability
// 18
let biggest = null;
for (let script of SCRIPTS) {
if (biggest == null || characterCount(biggest) < characterCount(script)) {
biggest = script;
}
}
console.log(biggest);
// ! {name: "Han", ...}
// 19
function average(array) {
return array.reduce((a, b) => a + b) / array.length;
}
console.log(Math.round(average(
SCRIPTS.filter(s => s.living).map(s => s.year))));
// ! 1188
console.log(Math.round(average(
SCRIPTS.filter(s => !s.living).map(s => s.year))));
// ! 188
// 20
let total = 0, count = 0;
for (let script of SCRIPTS) {
if (script.living) {
total += script.year;
count += 1;
}
}
console.log(Math.round(total / count));
// ! 1188
// Strings and Character Codes
// 21
function characterScript(code) {
for (let script of SCRIPTS) {
if (script.ranges.some(([from, to]) => {
return code >= from && code < to;
})) {
return script;
}
}
return null;
}
console.log(characterScript(121));
// ! {name: "Latin", ...}
// 22
// Two emoji characters, horse and shoe
let horseShoe = "🐴👟";
console.log(horseShoe.length);
// → 4
console.log(horseShoe[0]);
// → (Invalid half-character)
console.log(horseShoe.charCodeAt(0));
// → 55357 (Code of the half-character)
console.log(horseShoe.codePointAt(0));
// → 128052 (Actual code for horse emoji)
// 23
let roseDragon = "🌹🐉";
for (let char of roseDragon) {
console.log(char);
}
// → 🌹
// → 🐉
// Recognizing Text
// 24
function countBy(items, groupName) {
let counts = [];
for (let item of items) {
let name = groupName(item);
let known = counts.findIndex(c => c.name == name);
if (known == -1) {
counts.push({name, count: 1});
} else {
counts[known].count++;
}
}
return counts;
}
console.log(countBy([1, 2, 3, 4, 5], n => n > 2));
// ! [{name: false, count: 2}, {name: true, count: 3}]
// 25
function textScripts(text) {
let scripts = countBy(text, char => {
let script = characterScript(char.codePointAt(0));
return script ? script.name : "none";
}).filter(({name}) => name != "none");
let total = scripts.reduce((n, {count}) => n + count, 0);
if (total == 0) return "No scripts found";
return scripts.map(({name, count}) => {
return `${Math.round(count * 100 / total)}% ${name}`;
}).join(", ");
}
console.log(textScripts(' "woof", , "тяв"'));
// → 61% Han, 22% Latin, 17% Cyrillic
// Exercises
// Flatening
let arrays = [[3,7],[2,6],[8,9,10]];
function reduce(array, combine, start) {
let current = start;
for (let element of array) {
current = combine(current, element);
}
return current;
}
let oneArray = arrays.reduce((array1,array2) => array1.concat(array2));
console.log(oneArray);
console.log(oneArray.sort(function(a, b){return a-b}));
function orderArray(array){
let aux;
for(let i = 0; i <= array.length-1; i++){
for(let j = i; j <= array.length; j++){
if(array[j] < array[i]){
aux = array[i];
array[i] = array[j];
array[j] = aux;
}
}
}
return array;
}
console.log(orderArray(oneArray));
// Your Own Loop
function loop(value, test, update, body) {
for (let i = value; test(i); update(i)) {
body(i)
}
}
//for(let i = 0; i<=n; i++)
let i = 10;
let n = 3;
loop(i , n => n > 0 , n => n-1 , console.log(n));
// Everything
function every(array, test) {
return array.some(test);
}
let array = [3, 2, 5];
let number = 10;
console.log("Everything function using some method has an array: ", array," with operation >=",number, " and returns: ", every(array, n => n >= 10));
console.log("Everything function using some method has an array: ", array," with operation <=",number, " and returns: ", every(array, n => n <= 10));
function everyLoop(array, test) {
for(let number of array){
if(test(number)===false){
return false;
}
}
return true;
}
console.log("Everything function using loop method has an array: ", array," with operation >=",number, " and returns: ", every(array, n => n >= 10));
console.log("Everything function using loop method has an array: ", array," with operation <=",number, " and returns: ", every(array, n => n <= 10));
// Dominant Writing Direction
function characterScript(code) {
for (let script of SCRIPTS) {
if (script.ranges.some(([from, to]) => code >= from && code < to)) {
return script;
}
}
return null;
}
function countBy(items, groupName) {
let counts = [];
for (let item of items) {
let name = groupName(item);
let known = counts.findIndex(c => c.name == name);
if (known == -1) {
counts.push({name, count: 1});
} else {
counts[known].count++;
}
}
return counts;
}
function dominantDirection(text) {
let scripts = countBy(text, char => {
let script = characterScript(char.codePointAt(0));
return script ? script.direction : "none";
}).filter(({name}) => name != "none");
switch (scripts.length) {
case 0:
return 'no dominant direction found';
case 1:
return scripts[0].name;
default:
if (scripts.reduce((acc, cur) => acc.count === cur.count)) {
return 'no dominant direction found';
} else {
return scripts.reduce((acc, cur) => acc.count >= cur.count ? acc.name : cur.name);
}
}
}
console.log(dominantDirection("Hello!"));
// → ltr
console.log(dominantDirection("Hey, مساء الخير"));
// → rtl
console.log(dominantDirection(""));
// → no dominant direction found
console.log(dominantDirection("Heyخير"));
// → no dominant direction found