Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-250-250250.english.md
mrugesh 22afc2a0ca feat(learn): python certification projects (#38216)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
2020-05-27 13:19:08 +05:30

841 B

id, challengeType, isHidden, title, forumTopicId
id challengeType isHidden title forumTopicId
5900f4661000cf542c50ff78 5 false Problem 250: 250250 301898

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