freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-26-reciprocal-cycle...

1012 B

id challengeType title videoUrl localeTitle
5900f3861000cf542c50fe99 5 Problem 26: Reciprocal cycles

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(reciprocalCycles(700) == 659, "<code>reciprocalCycles(700)</code> should return 659.");'
  - text: ''
    testString: 'assert(reciprocalCycles(800) == 743, "<code>reciprocalCycles(800)</code> should return 743.");'
  - text: ''
    testString: 'assert(reciprocalCycles(900) == 887, "<code>reciprocalCycles(900)</code> should return 887.");'
  - text: ''
    testString: 'assert(reciprocalCycles(1000) == 983, "<code>reciprocalCycles(1000)</code> should return 983.");'

Challenge Seed

function reciprocalCycles(n) {
  // Good luck!
  return n;
}

reciprocalCycles(1000);

Solution

// solution required