freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-326-modulo-summatio...

635 B

id challengeType title videoUrl localeTitle
5900f4b21000cf542c50ffc5 5 Problem 326: Modulo Summations

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler326();

Solution

// solution required