2018-10-08 13:51:51 -04:00
---
2018-10-10 16:20:40 -04:00
id: 5900f4841000cf542c50ff96
2018-10-08 13:51:51 -04:00
challengeType: 5
title: 'Problem 279: Triangles with integral sides and an integral angle'
2018-10-10 16:20:40 -04:00
videoUrl: ''
localeTitle: 'Problema 279: Triángulos con lados integrales y un ángulo integral'
2018-10-08 13:51:51 -04:00
---
## Description
2018-10-10 16:20:40 -04:00
<section id="description"> ¿Cuántos triángulos hay con lados integrales, al menos un ángulo integral (medido en grados) y un perímetro que no exceda de 108? </section>
2018-10-08 13:51:51 -04:00
## Instructions
2018-10-10 16:20:40 -04:00
<section id="instructions">
2018-10-08 13:51:51 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler279()</code> debe devolver 416577688.
testString: 'assert.strictEqual(euler279(), 416577688, "<code>euler279()</code> should return 416577688.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler279() {
// Good luck!
return true;
}
euler279();
2018-10-10 16:20:40 -04:00
2018-10-08 13:51:51 -04:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>