freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-354-distances-in-a-...

626 B

id challengeType title videoUrl localeTitle
5900f4cf1000cf542c50ffe1 5 Problem 354: Distances in a bee"s honeycomb

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler354();

Solution

// solution required