freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-414-kaprekar-consta...

633 B

id challengeType title videoUrl localeTitle
5900f50b1000cf542c51001d 5 Problem 414: Kaprekar constant

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler414();

Solution

// solution required