freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-46-goldbachs-other-...

55 lines
678 B
Markdown

---
id: 5900f39a1000cf542c50fead
challengeType: 5
title: 'Problem 46: Goldbach"s other conjecture'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
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>