freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-73-counting-fractio...

1.9 KiB

id challengeType title videoUrl localeTitle
5900f3b61000cf542c50fec8 5 Problem 73: Counting fractions in a range Problema 73: contar fracciones en un rango

Description

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

Instrucciones

Pruebas

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

Semilla de desafío

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

Solución

 // solution required 

Instructions

Tests

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

Challenge Seed

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

euler73();

Solution

// solution required