freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-469-empty-chairs.ar...

624 B

id challengeType title videoUrl localeTitle
5900f5411000cf542c510053 5 Problem 469: Empty chairs

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler469();

Solution

// solution required