Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-84-monopoly-odds.spanish.md
2018-10-11 02:15:05 +05:30

682 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f3c11000cf542c50fed3 5 Problem 84: Monopoly odds Problema 84: Probabilidades de monopolio

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler84();

Solution

// solution required