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

706 B
Raw Blame History

id challengeType title videoUrl localeTitle
5900f5331000cf542c510046 5 Problem 455: Powers With Trailing Digits Проблема 455: Силы с отстающими цифрами

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler455(), 450186511399999, "<code>euler455()</code> should return 450186511399999.");'

Challenge Seed

function euler455() {
  // Good luck!
  return true;
}

euler455();

Solution

// solution required