freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-123-prime-square-re...

613 B

id challengeType title videoUrl localeTitle
5900f3e71000cf542c50fefa 5 Problem 123: Prime square remainders

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler123();

Solution

// solution required