freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-418-factorisation-t...

639 B

id challengeType title videoUrl localeTitle
5900f50f1000cf542c510021 5 Problem 418: Factorisation triples

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler418();

Solution

// solution required