freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-4-largest-palindrom...

834 B

id challengeType title videoUrl localeTitle
5900f3701000cf542c50fe83 5 Problem 4: Largest palindrome product

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(largestPalindromeProduct(2), 9009, "<code>largestPalindromeProduct(2)</code> should return 9009.");'
  - text: ''
    testString: 'assert.strictEqual(largestPalindromeProduct(3), 906609, "<code>largestPalindromeProduct(3)</code> should return 906609.");'

Challenge Seed

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

largestPalindromeProduct(3);

Solution

// solution required