freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-289-eulerian-cycles...

615 B

id challengeType title videoUrl localeTitle
5900f48d1000cf542c50ffa0 5 Problem 289: Eulerian Cycles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler289();

Solution

// solution required