freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-244-sliders.arabic.md

603 B

id challengeType title videoUrl localeTitle
5900f4601000cf542c50ff72 5 Problem 244: Sliders

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler244();

Solution

// solution required