freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-254-sums-of-digit-f...

630 B

id challengeType title videoUrl localeTitle
5900f46b1000cf542c50ff7d 5 Problem 254: Sums of Digit Factorials

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler254();

Solution

// solution required