Skip to content

Tasks done #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
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
47 changes: 47 additions & 0 deletions Exercises.ru.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Упражнения

## Итерирование циклами

Руализуйте функцию `sum(...args)`, которая суммирует все свои аргументы, пятью
разными способами. Примеры вызовов с результатами:
```js
const a = sum(1, 2, 3) // a === 6
const b = sum(0) // b === 0
const c = sum() // c === 0
const d = sum(1, -1, 1) // d === 1
const e = sum(10, -1, -1, -1) // e === 7
```

1. Цикл `for`
2. Цикл `for..of`
3. Цикл `while`
4. Цикл `do..while`
5. Метод `Array.prototype.reduce()`

## Итерирование по двумерному массиву

6. Найдите максимальный элемент в двумерном массиве
```js
const m = max([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
console.log(m); // 9
```

## Итерирование объектов-справочников

7. При помощи цикла `for..in` перебрать объект-справочник с датами рождения и
смерти людей и вернуть справочник с продолжительностью их жизни. Например:
```js
const persons = {
lenin: { born: 1870, died: 1924 },
mao: { born: 1893, died: 1976 },
gandhi: { born: 1869, died: 1948 },
hirohito: { born: 1901, died: 1989 },
};
console.log(ages(persons));
// {
// lenin: 54,
// mao: 83,
// gandhi: 79,
// hirohito: 88,
// }
```
11 changes: 8 additions & 3 deletions Exercises/1-for.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
'use strict';

// Use for loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6

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 acc = 0;
for (let i = 0; i < args.length; ++i)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for (let i = 0; i < args.length; ++i)
for (let i = 0; i < args.length; ++i) {

acc += args[i];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
acc += args[i];
acc += args[i];
}

return acc;
};

module.exports = { sum };
11 changes: 8 additions & 3 deletions Exercises/2-for-of.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
'use strict';
// Use for..of loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6

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 acc = 0;
for (const num of args)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for (const num of args)
for (const num of args) {

acc += num;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}

return acc;
};

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';

// Use while loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6

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 accum = 0;
while (args.length !== 0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
while (args.length !== 0)
while (args.length !== 0) {

accum += args.pop();

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}

return accum;
};

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


// Use do..while loop and accumulator variable
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6

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 accumulator = 0;

do {
accumulator += args.pop() || 0;
} while (args.length !== 0);

return accumulator;
};

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

const sum = (...args) => 0;
const sum = (...args) => args.reduce((acc, val) => acc + val, 0);

// Use Array.prototype.reduce method
// to calculate sum of all given arguments
// For example sum(1, 2, 3) should return 6
Expand Down
17 changes: 17 additions & 0 deletions Exercises/6-matrix.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'use strict';

// 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

const max = matrix => {
let maxVal = 0;

for (let row = 0; row < matrix.length; ++row)
for (let column = 0; column < matrix[row].length; ++column)
maxVal = (matrix[row][column] > maxVal) ? matrix[row][column] : maxVal;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use code blocks {}


return maxVal;
};

module.exports = { max };
13 changes: 13 additions & 0 deletions Exercises/6-matrix.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
({
name: 'max',
length: [220, 300],
cases: [
[[[10]], 10],
[[[1, 2], [3, 4], [5, 6]], 6],
[[[-1, 1], [2, -1], [-1, 0]], 2],
],
test: max => {
const src = max.toString();
if (!src.includes('for (')) throw new Error('Use for loop');
}
})
27 changes: 27 additions & 0 deletions Exercises/7-ages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
'use strict';


// 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 = persons => {
const ages = {};

for (const persona in persons)
ages[persona] = persons[persona].died - persons[persona].born;

return ages;
};

module.exports = { ages };
24 changes: 24 additions & 0 deletions Exercises/7-ages.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
({
name: 'ages',
length: [150, 190],
cases: [
[
{
lenin: { born: 1870, died: 1924 },
mao: { born: 1893, died: 1976 },
gandhi: { born: 1869, died: 1948 },
hirohito: { born: 1901, died: 1989 },
}, {
lenin: 54,
mao: 83,
gandhi: 79,
hirohito: 88,
}
]
],
test: ages => {
const src = ages.toString();
if (!src.includes('for (')) throw new Error('Use for..in loop');
if (!src.includes(' in ')) throw new Error('Use for..in loop');
}
})
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Different implementation of iterations as a code abstraction

[![Массивы, объекты, классы, прототипы](https://img.youtube.com/vi/VBMGnAPfmsY/0.jpg)](https://www.youtube.com/watch?v=/VBMGnAPfmsY)
[![Массивы, объекты, классы, прототипы](https://img.youtube.com/vi/VBMGnAPfmsY/0.jpg)](https://www.youtube.com/watch?v=VBMGnAPfmsY)
[![Итерирование, циклы и итераторы](https://img.youtube.com/vi/lq3b5_UGJas/0.jpg)](https://www.youtube.com/watch?v=lq3b5_UGJas)
15 changes: 15 additions & 0 deletions Solutions/6-matrix.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
'use strict';

const max = matrix => {
let value = matrix[0][0];
for (let i = 0; i < matrix.length; i++) {
const row = matrix[i];
for (let j = 0; j < row.length; j++) {
const cell = row[j];
if (value < cell) value = cell;
}
}
return value;
};

module.exports = { max };
12 changes: 12 additions & 0 deletions Solutions/7-ages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
'use strict';

const ages = persons => {
const data = {};
for (const name in persons) {
const person = persons[name];
data[name] = person.died - person.born;
}
return data;
};

module.exports = { ages };