freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-92-square-digit-cha...

608 B

id challengeType title videoUrl localeTitle
5900f3c81000cf542c50fedb 5 Problem 92: Square digit chains

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler92();

Solution

// solution required