freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-122-efficient-expon...

612 B

id challengeType title videoUrl localeTitle
5900f3e61000cf542c50fef9 5 Problem 122: Efficient exponentiation

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler122();

Solution

// solution required