freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-120-square-remainde...

615 B

id challengeType title videoUrl localeTitle
5900f3e41000cf542c50fef7 5 Problem 120: Square remainders

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler120();

Solution

// solution required