freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-171-finding-numbers...

672 B

id challengeType title videoUrl localeTitle
5900f4181000cf542c50ff2a 5 Problem 171: Finding numbers for which the sum of the squares of the digits is a square

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler171();

Solution

// solution required