freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-226-a-scoop-of-blan...

621 B

id challengeType title videoUrl localeTitle
5900f4511000cf542c50ff62 5 Problem 226: A Scoop of Blancmange

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler226();

Solution

// solution required