Files
freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-72-counting-fractions.english.md
Valeriy 79d9012432 fix(curriculum): quotes in tests (#18828)
* fix(curriculum): tests quotes

* fix(curriculum): fill seed-teardown

* fix(curriculum): fix tests and remove unneeded seed-teardown
2018-10-20 23:32:47 +05:30

1.1 KiB

id, challengeType, title
id challengeType title
5900f3b41000cf542c50fec7 5 Problem 72: Counting fractions

Description

Consider the fraction, n/d, where n and d are positive integers. If n

Instructions

Tests

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

Challenge Seed

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

euler72();

Solution

// solution required