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

639 B

id challengeType title videoUrl localeTitle
5900f47b1000cf542c50ff8d 5 Problem 271: Modular Cubes, part 1

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler271();

Solution

// solution required