freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-251-cardano-triplet...

612 B

id challengeType title videoUrl localeTitle
5900f4671000cf542c50ff7a 5 Problem 251: Cardano Triplets

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler251();

Solution

// solution required