freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-252-convex-holes.ar...

604 B

id challengeType title videoUrl localeTitle
5900f4691000cf542c50ff7b 5 Problem 252: Convex Holes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler252();

Solution

// solution required