freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-200-find-the-200th-...

679 B

id challengeType title videoUrl localeTitle
5900f4351000cf542c50ff47 5 Problem 200: Find the 200th prime-proof sqube containing the contiguous sub-string "200"

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler200();

Solution

// solution required