freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-388-distinct-lines....

630 B

id challengeType title videoUrl localeTitle
5900f4f11000cf542c510002 5 Problem 388: Distinct Lines

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler388();

Solution

// solution required