freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-242-odd-triplets.ar...

628 B

id challengeType title videoUrl localeTitle
5900f45f1000cf542c50ff71 5 Problem 242: Odd Triplets

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler242();

Solution

// solution required