freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-51-prime-digit-repl...

55 lines
611 B
Markdown

---
id: 5900f39f1000cf542c50feb2
challengeType: 5
title: 'Problem 51: Prime digit replacements'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler51(), 121313, "<code>euler51()</code> should return 121313.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler51() {
// Good luck!
return true;
}
euler51();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>