freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-370-geometric-trian...

627 B

id challengeType title videoUrl localeTitle
5900f4de1000cf542c50fff1 5 Problem 370: Geometric triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler370();

Solution

// solution required