freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-378-triangle-triple...

632 B

id challengeType title videoUrl localeTitle
5900f4e61000cf542c50fff9 5 Problem 378: Triangle Triples

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler378();

Solution

// solution required