freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-251-cardano-triplet...

55 lines
612 B
Markdown
Raw Normal View History

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