freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-273-sum-of-squares....

55 lines
632 B
Markdown
Raw Normal View History

---
id: 5900f47e1000cf542c50ff90
challengeType: 5
title: 'Problem 273: Sum of Squares'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler273(), 2032447591196869000, "<code>euler273()</code> should return 2032447591196869000.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler273() {
// Good luck!
return true;
}
euler273();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>