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

1.9 KiB

id challengeType title videoUrl localeTitle
5900f3b41000cf542c50fec7 5 Problem 72: Counting fractions Problema 72: contar fracciones

Description

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

Instrucciones

Pruebas

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

Semilla de desafío

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

Solución

 // solution required 

Instructions

Tests

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

Challenge Seed

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

euler72();

Solution

// solution required