freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-380-amazing-mazes.a...

610 B

id challengeType title videoUrl localeTitle
5900f4e81000cf542c50fffb 5 Problem 380: Amazing Mazes!

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler380();

Solution

// solution required