freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-151-paper-sheets-of...

653 B

id challengeType title videoUrl localeTitle
5900f4031000cf542c50ff16 5 Problem 151: Paper sheets of standard sizes: an expected-value problem

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler151();

Solution

// solution required