freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-95-amicable-chains....

600 B

id challengeType title videoUrl localeTitle
5900f3cc1000cf542c50fede 5 Problem 95: Amicable chains

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler95();

Solution

// solution required