freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-338-cutting-rectang...

626 B

id challengeType title videoUrl localeTitle
5900f4be1000cf542c50ffd1 5 Problem 338: Cutting Rectangular Grid Paper

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler338();

Solution

// solution required