freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-456-triangles-conta...

650 B

id challengeType title videoUrl localeTitle
5900f5351000cf542c510047 5 Problem 456: Triangles containing the origin II

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler456();

Solution

// solution required