Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-455-powers-with-trailing-digits.russian.md

55 lines
706 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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>