, чтобы сохранить свой прогресс
Задача 71: Упорядоченные фракции
Consider the fraction, n/d, where n and d are positive integers. If nInstructions
Tests
tests:
- text: <code>euler71()</code> should return 428570.
testString: assert.strictEqual(euler71(), 428570);
Challenge Seed
function euler71() {
// Good luck!
return true;
}
euler71();
Solution
// solution required
/**
* Your test output will go here.
*/