freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-78-coin-partitions....

600 B

id challengeType title videoUrl localeTitle
5900f3ba1000cf542c50fecd 5 Problem 78: Coin partitions

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler78();

Solution

// solution required