freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-119-digit-power-sum...

625 B

id challengeType title videoUrl localeTitle
5900f3e41000cf542c50fef6 5 Problem 119: Digit power sum

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler119();

Solution

// solution required