freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-272-modular-cubes-p...

639 B

id challengeType title videoUrl localeTitle
5900f47d1000cf542c50ff8f 5 Problem 272: Modular Cubes, part 2

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler272();

Solution

// solution required