freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-231-the-prime-facto...

654 B

id challengeType title videoUrl localeTitle
5900f4531000cf542c50ff66 5 Problem 231: The prime factorisation of binomial coefficients

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler231();

Solution

// solution required