freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-190-maximising-a-we...

627 B

id challengeType title videoUrl localeTitle
5900f42b1000cf542c50ff3d 5 Problem 190: Maximising a weighted product

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler190();

Solution

// solution required