forked from zero-to-mastery/JS_Fun_Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_solutions.js
102 lines (70 loc) · 2.84 KB
/
my_solutions.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/// Write a function identity that takes an argument and returns that argument
const identity = (x) => x;
console.log(identity("Hello World!"));
// Write a binary function addb that takes two numbers and returns their sum
const addb = (a, b) => a+b;
console.log(addb(2,3));
// Write a binary function subb that takes two numbers and returns their difference
const subb = (a,b) => a-b;
console.log(5,3);
// Write a binary function mulb that takes two numbers and returns their product
const mulb = (a, b) => a*b;
console.log(mulb(5,3));
// Write a binary function minb that takes two numbers and returns the smaller one
const minb = (a,b) => a < b ? a : b;
console.log(minb(5,3));
// Write a binary function maxb that takes two numbers and returns the larger one
const minb = (a,b) => a > b ? a : b;
console.log(minb(5,3));
// Write a function add that is generalized for any amount of arguments
const add = (...nums) => nums.reduce((a,b) => a+b);
console.log(add(2,3,4));
// Write a function sub that is generalized for any amount of arguments
const sub = (...nums) => nums.reduce((a,b) => a-b);
console.log(sub(2,3,4));
// Write a function mul that is generalized for any amount of arguments
const mul = (...nums) => nums.reduce((a,b) => a*b);
console.log(mul(2,3,4));
// Write a function min that is generalized for any amount of arguments
const min = (...nums) => nums.reduce((a,b) => a < b ? a:b);
console.log(min(2,3,4));
// Write a function max that is generalized for any amount of arguments
const max = (...nums) => nums.reduce((a, b) => a > b ? a:b);
console.log(max(2,35,43));
// Write a function addRecurse that is the generalized add function but uses recursion
const addRecurse = (...nums) => {
if(nums.length < 1)
return 0
return nums[0] + addRecurse(...nums.slice(1))
}
console.log(addRecurse(1,-2,3,4));
// Write a function mulRecurse that is the generalized mul function but uses recursion
const mulRecurse = (...nums) => {
if(nums.length < 1)
return 1
return nums[0] * mulRecurse(...nums.slice(1))
}
console.log(mulRecurse(1,-2,3,4));
// Write a function minRecurse that is the generalized min function but uses recursion
const minRecurse = (...nums) => {
if(nums.length < 1)
return 1
return nums[0] < minRecurse(...nums.slice(1)) ? nums[0]:minRecurse(...nums.slice(1))
}
console.log(minRecurse(1,33,2,3,-1));
// Write a function maxRecurse that is the generalized max function but uses recursion
const maxRecurse = (...nums) => {
if(nums.length < 1)
return 1
return nums[0] < maxRecurse(...nums.slice(1)) ? nums[0]:maxRecurse(...nums.slice(1))
}
console.log(maxRecurse(1,33,2,3,-1));
// Write a function not that takes a function and returns the negation of its result
const not = (fun) => {
return function (...args) {
return !fun(...args);
};
}
const isOdd = (a) => a % 2 !== 0;
const isEven = not(isOdd);
console.log(isEven(7));