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

708 B
Raw Blame History

id challengeType title videoUrl localeTitle
5900f5191000cf542c51002c 5 Problem 429: Sum of squares of unitary divisors 问题429单一除数的平方和

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler429();

Solution

// solution required