freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-345-matrix-sum.russ...

55 lines
647 B
Markdown
Raw Normal View History

---
id: 5900f4c81000cf542c50ffda
challengeType: 5
title: 'Problem 345: Matrix Sum'
videoUrl: ''
localeTitle: 'Задача 345: Матричная сумма'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler345(), 13938, "<code>euler345()</code> should return 13938.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler345() {
// Good luck!
return true;
}
euler345();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>