freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-455-powers-with-tra...

55 lines
637 B
Markdown

---
id: 5900f5331000cf542c510046
challengeType: 5
title: 'Problem 455: Powers With Trailing Digits'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler455(), 450186511399999, "<code>euler455()</code> should return 450186511399999.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler455() {
// Good luck!
return true;
}
euler455();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>