freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-134-prime-pair-conn...

635 B

id challengeType title videoUrl localeTitle
5900f3f21000cf542c50ff05 5 Problem 134: Prime pair connection

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler134();

Solution

// solution required