freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-279-triangles-with-...

56 lines
955 B
Markdown

---
id: 5900f4841000cf542c50ff96
challengeType: 5
title: 'Problem 279: Triangles with integral sides and an integral angle'
videoUrl: ''
localeTitle: 'Problema 279: Triángulos con lados integrales y un ángulo integral'
---
## Description
<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>
## Instructions
<section id="instructions">
</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();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>