freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-293-pseudo-fortunat...

55 lines
612 B
Markdown

---
id: 5900f4931000cf542c50ffa4
challengeType: 5
title: 'Problem 293: Pseudo-Fortunate Numbers'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler293(), 2209, "<code>euler293()</code> should return 2209.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler293() {
// Good luck!
return true;
}
euler293();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>