freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-71-ordered-fraction...

1.9 KiB

id challengeType title videoUrl localeTitle
5900f3b31000cf542c50fec6 5 Problem 71: Ordered fractions Problema 71: fracciones ordenadas

Description

Considera la fracción, n / d, donde n y d son enteros positivos. Si n

Instrucciones

Pruebas

 tests: - text: <code>euler71()</code> should return 428570. testString: 'assert.strictEqual(euler71(), 428570, "<code>euler71()</code> should return 428570.");' 

Semilla de desafío

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

Solución

 // solution required 

Instructions

Tests

tests:
  - text: <code>euler71()</code> debe devolver 428570.
    testString: 'assert.strictEqual(euler71(), 428570, "<code>euler71()</code> should return 428570.");'

Challenge Seed

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

euler71();

Solution

// solution required