freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-125-palindromic-sum...

616 B

id challengeType title videoUrl localeTitle
5900f3e91000cf542c50fefc 5 Problem 125: Palindromic sums

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler125();

Solution

// solution required