freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-457-a-polynomial-mo...

659 B

id challengeType title videoUrl localeTitle
5900f5361000cf542c510048 5 Problem 457: A polynomial modulo the square of a prime

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler457();

Solution

// solution required