freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-128-hexagonal-tile-...

628 B

id challengeType title videoUrl localeTitle
5900f3ec1000cf542c50feff 5 Problem 128: Hexagonal tile differences

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler128();

Solution

// solution required