freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-196-prime-triplets....

630 B

id challengeType title videoUrl localeTitle
5900f4301000cf542c50ff42 5 Problem 196: Prime triplets

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler196();

Solution

// solution required