freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-381-prime-k-factori...

629 B

id challengeType title videoUrl localeTitle
5900f4ea1000cf542c50fffc 5 Problem 381: (prime-k) factorial

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler381();

Solution

// solution required