freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-30-digit-n-powers.a...

61 lines
956 B
Markdown
Raw Normal View History

---
id: 5900f38a1000cf542c50fe9d
challengeType: 5
title: 'Problem 30: Digit n powers'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert(digitnPowers(2) == 0, "<code>digitnPowers(2)</code> should return 0.");'
- text: ''
testString: 'assert(digitnPowers(3) == 1301, "<code>digitnPowers(3)</code> should return 1301.");'
- text: ''
testString: 'assert(digitnPowers(4) == 19316, "<code>digitnPowers(4)</code> should return 19316.");'
- text: ''
testString: 'assert(digitnPowers(5) == 443839, "<code>digitnPowers(5)</code> should return 443839.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function digitnPowers(n) {
// Good luck!
return n;
}
digitnPowers(5);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>