freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-37-truncatable-prim...

61 lines
1019 B
Markdown

---
id: 5900f3911000cf542c50fea4
challengeType: 5
title: 'Problem 37: Truncatable primes'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert(truncatablePrimes(8) == 1986, "<code>truncatablePrimes(8)</code> should return 1986.");'
- text: ''
testString: 'assert(truncatablePrimes(9) == 5123, "<code>truncatablePrimes(9)</code> should return 5123.");'
- text: ''
testString: 'assert(truncatablePrimes(10) == 8920, "<code>truncatablePrimes(10)</code> should return 8920.");'
- text: ''
testString: 'assert(truncatablePrimes(11) == 748317, "<code>truncatablePrimes(11)</code> should return 748317.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function truncatablePrimes(n) {
// Good luck!
return n;
}
truncatablePrimes(11);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>