freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-275-balanced-sculpt...

615 B

id challengeType title videoUrl localeTitle
5900f4801000cf542c50ff92 5 Problem 275: Balanced Sculptures

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler275();

Solution

// solution required