[Ru] Improved the translation of Project Euler 03 (#34162)

Changed the file "problem-3-largest-prime-factor.russian.md".
This commit is contained in:
elcodex
2019-06-03 23:10:07 +03:00
committed by Randell Dawson
parent 64425088bb
commit 4a6001535c

View File

@ -3,11 +3,11 @@ id: 5900f36f1000cf542c50fe82
challengeType: 5 challengeType: 5
title: 'Problem 3: Largest prime factor' title: 'Problem 3: Largest prime factor'
videoUrl: '' videoUrl: ''
localeTitle: 'Задача 3: Наибольший простой коэффициент' localeTitle: 'Задача 3: Наибольший простой множитель'
--- ---
## Description ## Description
<section id="description"> Основными факторами 13195 являются 5, 7, 13 и 29. Каков самый большой простой коэффициент для данного <code>number</code> ? </section> <section id="description"> Простыми множителями (факторами) числа 13195 являются 5, 7, 13 и 29. Каков самый большой простой множитель для данного <code>number</code> ? </section>
## Instructions ## Instructions
<section id="instructions"> <section id="instructions">
@ -42,7 +42,7 @@ tests:
```js ```js
function largestPrimeFactor(number) { function largestPrimeFactor(number) {
// Good luck! // Удачи!
return true; return true;
} }