freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-466-distinct-terms-...

656 B

id challengeType title videoUrl localeTitle
5900f53e1000cf542c510051 5 Problem 466: Distinct terms in a multiplication table

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler466();

Solution

// solution required