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

58 lines
1.5 KiB
Markdown
Raw Normal View History

---
id: 5900f3701000cf542c50fe83
challengeType: 5
title: 'Problem 4: Largest palindrome product'
videoUrl: ''
localeTitle: 'Проблема 4: Крупнейший продукт палиндрома'
---
## Description
<section id="description"> Палиндромный номер читается одинаково в обоих направлениях. Самый большой палиндром, полученный из продукта двух двузначных чисел, составляет 9009 = 91 × 99. Найдите самый большой палиндром, изготовленный из продукта двух <code>n</code> разрядных чисел. </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>largestPalindromeProduct(2)</code> должен возвращать 9009.
testString: 'assert.strictEqual(largestPalindromeProduct(2), 9009, "<code>largestPalindromeProduct(2)</code> should return 9009.");'
- text: <code>largestPalindromeProduct(3)</code> должен возвращать 906609.
testString: 'assert.strictEqual(largestPalindromeProduct(3), 906609, "<code>largestPalindromeProduct(3)</code> should return 906609.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function largestPalindromeProduct(n) {
// Good luck!
return true;
}
largestPalindromeProduct(3);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>