freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-141-investigating-p...

663 B

id challengeType title videoUrl localeTitle
5900f3f91000cf542c50ff0b 5 Problem 141: Investigating progressive numbers, n, which are also square

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler141();

Solution

// solution required