--- id: 5900f4671000cf542c50ff7a challengeType: 5 title: 'Problem 251: Cardano Triplets' videoUrl: '' localeTitle: 'Problema 251: Trigêmeos Cardano' --- ## Description
Um trio de inteiros positivos (a, b, c) é chamado de Tripleto Cardano se satisfizer a condição:

Por exemplo, (2,1,5) é um Cardano Triplet.

Existem 149 Cardano Trigêmeos para os quais a + b + c ≤ 1000.

Descubra quantas Cardplas Triplets existem, de modo que a + b + c ≤ 110.000.000.

## Instructions
## Tests
```yml tests: - text: euler251() deve retornar 18946051. testString: 'assert.strictEqual(euler251(), 18946051, "euler251() should return 18946051.");' ```
## Challenge Seed
```js function euler251() { // Good luck! return true; } euler251(); ```
## Solution
```js // solution required ```