Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-261-pivotal-square-sums.russian.md

56 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4711000cf542c50ff84
challengeType: 5
title: 'Problem 261: Pivotal Square Sums'
videoUrl: ''
localeTitle: 'Задача 261: суммарные квадратные суммы'
---
## Description
<section id="description"> Назовем положительный целочисленный квадрат квадрата ka, если существует пара целых чисел m&gt; 0 и n ≥ k, так что сумма (m + 1) последовательных квадратов до k равна сумме m последовательных квадратов от (n + 1): <p> (км) 2 + ... + k2 = (n + 1) 2 + ... + (n + m) 2. </p><p> Некоторые небольшие квадратные точки: 4: 32 + 42 = 52 21: 202 + 212 = 292 24: 212 + 222 + 232 + 242 = 252 + 262 + 272 110: 1082 + 1092 + 1102 = 1332 + 1342Найти сумму всех четкие квадратные точки ≤ 1010. </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler261()</code> должен вернуть 238890850232021.
testString: 'assert.strictEqual(euler261(), 238890850232021, "<code>euler261()</code> should return 238890850232021.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler261() {
// Good luck!
return true;
}
euler261();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>