freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-406-guessing-game.a...

621 B

id challengeType title videoUrl localeTitle
5900f5021000cf542c510015 5 Problem 406: Guessing Game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler406();

Solution

// solution required