freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-217-balanced-number...

610 B

id challengeType title videoUrl localeTitle
5900f4461000cf542c50ff58 5 Problem 217: Balanced Numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler217();

Solution

// solution required