freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-382-generating-poly...

617 B

id challengeType title videoUrl localeTitle
5900f4eb1000cf542c50fffd 5 Problem 382: Generating polygons

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler382();

Solution

// solution required