freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-146-investigating-a...

627 B

id challengeType title videoUrl localeTitle
5900f3fe1000cf542c50ff11 5 Problem 146: Investigating a Prime Pattern

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler146();

Solution

// solution required