freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-461-almost-pi.spani...

703 B

id challengeType title videoUrl localeTitle
5900f53a1000cf542c51004c 5 Problem 461: Almost Pi Problema 461: Casi Pi

Description

undefined

Instructions

Tests

tests:
  - text: <code>euler461()</code> debe devolver 159820276.
    testString: 'assert.strictEqual(euler461(), 159820276, "<code>euler461()</code> should return 159820276.");'

Challenge Seed

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

euler461();

Solution

// solution required