freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-261-pivotal-square-...

629 B

id challengeType title videoUrl localeTitle
5900f4711000cf542c50ff84 5 Problem 261: Pivotal Square Sums

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler261();

Solution

// solution required