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

55 lines
706 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f5331000cf542c510046
challengeType: 5
title: 'Problem 455: Powers With Trailing Digits'
videoUrl: ''
localeTitle: 'Проблема 455: Силы с отстающими цифрами'
---
## 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>