freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/amicable-pairs.arabic.md

1.3 KiB

title id challengeType videoUrl localeTitle
Amicable pairs 5949b579404977fbaefcd737 5

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof amicablePairsUpTo === "function", "<code>amicablePairsUpTo</code> is a function.");'
  - text: ''
    testString: 'assert.deepEqual(amicablePairsUpTo(300), answer300, "<code>amicablePairsUpTo(300)</code> should return <code>[[220,284]]</code>.");'
  - text: ''
    testString: 'assert.deepEqual(amicablePairsUpTo(3000), answer3000, "<code>amicablePairsUpTo(3000)</code> should return <code>[[220,284],[1184,1210],[2620,2924]]</code>.");'
  - text: ''
    testString: 'assert.deepEqual(amicablePairsUpTo(20000), answer20000, "<code>amicablePairsUpTo(20000)</code> should return <code>[[220,284],[1184,1210],[2620,2924],[5020,5564],[6232,6368],[10744,10856],[12285,14595],[17296,18416]]</code>.");'

Challenge Seed

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

After Test

console.info('after the test');

Solution

// solution required