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

705 B

id challengeType title videoUrl localeTitle
5900f5411000cf542c510053 5 Problem 469: Empty chairs Problema 469: sillas vacías

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler469()</code> debe devolver 0.56766764161831.
    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