freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-298-selective-amnes...

617 B

id challengeType title videoUrl localeTitle
5900f4971000cf542c50ffa9 5 Problem 298: Selective Amnesia

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler298();

Solution

// solution required