freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-250-250250.english.md

804 B

id challengeType title
5900f4661000cf542c50ff78 5 Problem 250: 250250

Description

Find the number of non-empty subsets of {11, 22, 33,..., 250250250250}, the sum of whose elements is divisible by 250. Enter the rightmost 16 digits as your answer.

Instructions

Tests

tests:
  - text: <code>euler250()</code> should return 1425480602091519.
    testString: assert.strictEqual(euler250(), 1425480602091519);

Challenge Seed

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

euler250();

Solution

// solution required