freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-476-circle-packing-...

621 B

id challengeType title videoUrl localeTitle
5900f5481000cf542c51005b 5 Problem 476: Circle Packing II

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler476();

Solution

// solution required