66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 5900f36f1000cf542c50fe82
 | |
| challengeType: 5
 | |
| title: 'Problem 3: Largest prime factor'
 | |
| videoUrl: ''
 | |
| localeTitle: 'Задача 3: Наибольший простой коэффициент'
 | |
| ---
 | |
| 
 | |
| ## Description
 | |
| <section id="description"> Основными факторами 13195 являются 5, 7, 13 и 29. Каков самый большой простой коэффициент для данного <code>number</code> ? </section>
 | |
| 
 | |
| ## Instructions
 | |
| <section id="instructions">
 | |
| </section>
 | |
| 
 | |
| ## Tests
 | |
| <section id='tests'>
 | |
| 
 | |
| ```yml
 | |
| tests:
 | |
|   - text: <code>largestPrimeFactor(2)</code> должен возвращать 2.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(2), 2, "<code>largestPrimeFactor(2)</code> should return 2.");'
 | |
|   - text: <code>largestPrimeFactor(3)</code> должен возвращать 3.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(3), 3, "<code>largestPrimeFactor(3)</code> should return 3.");'
 | |
|   - text: <code>largestPrimeFactor(5)</code> должен возвращать 5.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(5), 5, "<code>largestPrimeFactor(5)</code> should return 5.");'
 | |
|   - text: <code>largestPrimeFactor(7)</code> должен возвращать 7.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(7), 7, "<code>largestPrimeFactor(7)</code> should return 7.");'
 | |
|   - text: <code>largestPrimeFactor(13195)</code> должен возвращать 29.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(13195), 29, "<code>largestPrimeFactor(13195)</code> should return 29.");'
 | |
|   - text: <code>largestPrimeFactor(600851475143)</code> должен возвращать 6857.
 | |
|     testString: 'assert.strictEqual(largestPrimeFactor(600851475143), 6857, "<code>largestPrimeFactor(600851475143)</code> should return 6857.");'
 | |
| 
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Challenge Seed
 | |
| <section id='challengeSeed'>
 | |
| 
 | |
| <div id='js-seed'>
 | |
| 
 | |
| ```js
 | |
| function largestPrimeFactor(number) {
 | |
|   // Good luck!
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| largestPrimeFactor(13195);
 | |
| 
 | |
| ```
 | |
| 
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Solution
 | |
| <section id='solution'>
 | |
| 
 | |
| ```js
 | |
| // solution required
 | |
| ```
 | |
| </section>
 |