freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-236-luxury-hampers....

610 B

id challengeType title videoUrl localeTitle
5900f4591000cf542c50ff6b 5 Problem 236: Luxury Hampers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler236();

Solution

// solution required