freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-383-divisibility-co...

650 B

id challengeType title videoUrl localeTitle
5900f4ed1000cf542c50ffff 5 Problem 383: Divisibility comparison between factorials

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler383();

Solution

// solution required