freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-412-gnomon-numberin...

612 B

id challengeType title videoUrl localeTitle
5900f5081000cf542c51001a 5 Problem 412: Gnomon numbering

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler412();

Solution

// solution required