freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-327-rooms-of-doom.a...

621 B

id challengeType title videoUrl localeTitle
5900f4b31000cf542c50ffc6 5 Problem 327: Rooms of Doom

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler327();

Solution

// solution required