Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-290-digital-signature.md
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

38 lines
524 B
Markdown

---
id: 5900f48f1000cf542c50ffa1
title: 'Problem 290: Digital Signature'
challengeType: 5
forumTopicId: 301942
---
# --description--
How many integers 0 ≤ n < 1018 have the property that the sum of the digits of n equals the sum of digits of 137n?
# --hints--
`euler290()` should return 20444710234716470.
```js
assert.strictEqual(euler290(), 20444710234716470);
```
# --seed--
## --seed-contents--
```js
function euler290() {
return true;
}
euler290();
```
# --solutions--
```js
// solution required
```