freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-451-modular-inverse...

626 B

id challengeType title videoUrl localeTitle
5900f5311000cf542c510042 5 Problem 451: Modular inverses

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler451();

Solution

// solution required