Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Exercises/1-for.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ const sum = (...args) => {
// Use for loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
let total = 0;
for (let i = 0; i < args.length; i++) {
total += args[i]; // Додаємо кожен аргумент до суми
}
return total;
};

module.exports = { sum };
8 changes: 5 additions & 3 deletions Exercises/2-for-of.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
'use strict';

const sum = (...args) => {
// Use for..of loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
let total = 0;
for (const arg of args) {
total += arg;
}
return total;
};

module.exports = { sum };
12 changes: 9 additions & 3 deletions Exercises/3-while.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
'use strict';

const sum = (...args) => {
// Use while loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
let total = 0;
let i = 0;

while (i < args.length) {
total += args[i];
i++;
}

return total;
};

module.exports = { sum };
12 changes: 9 additions & 3 deletions Exercises/4-do-while.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
'use strict';

const sum = (...args) => {
// Use do..while loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
let total = 0;
let i = 0;

do {
total += args[i];
i++;
} while (i < args.length);

return total;
};

module.exports = { sum };
7 changes: 3 additions & 4 deletions Exercises/5-reduce.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
'use strict';

const sum = (...args) => 0;
// Use Array.prototype.reduce method
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
const sum = (...args) => {
return args.reduce((total, current) => total + current, 0);
};

module.exports = { sum };
14 changes: 11 additions & 3 deletions Exercises/6-matrix.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
'use strict';

const max = (matrix) => {
// Use nested for loop to find max value in 2d matrix
// For example max([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
// should return 9
let maxValue = -Infinity;

for (const row of matrix) {
for (const value of row) {
if (value > maxValue) {
maxValue = value;
}
}
}

return maxValue;
};

module.exports = { max };
21 changes: 8 additions & 13 deletions Exercises/7-ages.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
'use strict';

const ages = (persons) => {
// Use for..in to calculate age for each person
// For example ages({
// lenin: { born: 1870, died: 1924 },
// mao: { born: 1893, died: 1976 },
// gandhi: { born: 1869, died: 1948 },
// hirohito: { born: 1901, died: 1989 },
// })
// should return {
// lenin: 54,
// mao: 83,
// gandhi: 79,
// hirohito: 88,
// }
const ages = {};

for (const person in persons) {
const personData = persons[person];
ages[person] = personData.died - personData.born;
}

return ages;
};

module.exports = { ages };