Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-46-goldbachs-other-conjecture.spanish.md
2018-10-11 02:15:05 +05:30

56 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f39a1000cf542c50fead
challengeType: 5
title: 'Problem 46: Goldbach"s other conjecture'
videoUrl: ''
localeTitle: 'Problema 46: La otra conjetura de Goldbach.'
---
## Description
<section id="description"> Christian Goldbach propuso que cada número compuesto impar puede escribirse como la suma de un número primo y dos veces un cuadrado. 9 = 7 + 2 × 1 <sup>2</sup> 15 = 7 + 2 × 2 <sup>2</sup> 21 = 3 + 2 × 3 <sup>2</sup> 25 = 7 + 2 × 3 <sup>2</sup> 27 = 19 + 2 × 2 <sup>2</sup> 33 = 31 + 2 × 1 <sup>2</sup> Gira Fuera que la conjetura era falsa. ¿Cuál es el compuesto impar más pequeño que no se puede escribir como la suma de un número primo y dos veces un cuadrado? </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>goldbachsOtherConjecture()</code> debe devolver 5777.
testString: 'assert.strictEqual(goldbachsOtherConjecture(), 5777, "<code>goldbachsOtherConjecture()</code> should return 5777.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function goldbachsOtherConjecture() {
// Good luck!
return true;
}
goldbachsOtherConjecture();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>