freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-126-cuboid-layers.a...

603 B

id challengeType title videoUrl localeTitle
5900f3ea1000cf542c50fefd 5 Problem 126: Cuboid layers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler126();

Solution

// solution required