freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-131-prime-cube-part...

608 B

id challengeType title videoUrl localeTitle
5900f3ef1000cf542c50ff02 5 Problem 131: Prime cube partnership

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler131();

Solution

// solution required