freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-479-roots-on-the-ri...

615 B

id challengeType title videoUrl localeTitle
5900f54b1000cf542c51005d 5 Problem 479: Roots on the Rise

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler479();

Solution

// solution required