freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-429-sum-of-squares-...

715 B

id challengeType title videoUrl localeTitle
5900f5191000cf542c51002c 5 Problem 429: Sum of squares of unitary divisors Задача 429: Сумма квадратов унитарных делителей

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler429();

Solution

// solution required