freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-212-combined-volume...

630 B

id challengeType title videoUrl localeTitle
5900f4411000cf542c50ff53 5 Problem 212: Combined Volume of Cuboids

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler212();

Solution

// solution required