freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-329-prime-frog.arab...

642 B

id challengeType title videoUrl localeTitle
5900f4b51000cf542c50ffc8 5 Problem 329: Prime Frog

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler329();

Solution

// solution required