freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-398-cutting-rope.ar...

612 B

id challengeType title videoUrl localeTitle
5900f4fa1000cf542c51000d 5 Problem 398: Cutting rope

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler398();

Solution

// solution required