freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-425-prime-connectio...

618 B

id challengeType title videoUrl localeTitle
5900f5151000cf542c510028 5 Problem 425: Prime connection

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler425();

Solution

// solution required