Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

40 lines
710 B
Markdown

---
id: 5900f3e21000cf542c50fef5
title: 'Problem 118: Pandigital prime sets'
challengeType: 5
forumTopicId: 301744
---
# --description--
Using all of the digits 1 through 9 and concatenating them freely to form decimal integers, different sets can be formed. Interestingly with the set {2,5,47,89,631}, all of the elements belonging to it are prime.
How many distinct sets containing each of the digits one through nine exactly once contain only prime elements?
# --hints--
`euler118()` should return 44680.
```js
assert.strictEqual(euler118(), 44680);
```
# --seed--
## --seed-contents--
```js
function euler118() {
return true;
}
euler118();
```
# --solutions--
```js
// solution required
```