freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-229-four-representa...

630 B

id challengeType title videoUrl localeTitle
5900f4521000cf542c50ff64 5 Problem 229: Four Representations using Squares

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler229();

Solution

// solution required