freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-241-perfection-quot...

636 B

id challengeType title videoUrl localeTitle
5900f45d1000cf542c50ff70 5 Problem 241: Perfection Quotients

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler241();

Solution

// solution required