freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-307-chip-defects.ch...

616 B

id challengeType title videoUrl localeTitle
5900f4a01000cf542c50ffb2 5 Problem 307: Chip Defects

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler307();

Solution

// solution required