freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-88-product-sum-numb...

608 B

id challengeType title videoUrl localeTitle
5900f3c51000cf542c50fed6 5 Problem 88: Product-sum numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler88();

Solution

// solution required