freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-183-maximum-product...

620 B

id challengeType title videoUrl localeTitle
5900f4231000cf542c50ff36 5 Problem 183: Maximum product of parts

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler183();

Solution

// solution required