freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-386-maximum-length-...

628 B

id challengeType title videoUrl localeTitle
5900f4ef1000cf542c510001 5 Problem 386: Maximum length of an antichain

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler386();

Solution

// solution required