freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-474-last-digits-of-...

701 B

id challengeType title videoUrl localeTitle
5900f5471000cf542c510059 5 Problem 474: Last digits of divisors Задача 474: Последние цифры делителей

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler474();

Solution

// solution required