freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-189-tri-colouring-a...

645 B

id challengeType title videoUrl localeTitle
5900f4291000cf542c50ff3c 5 Problem 189: Tri-colouring a triangular grid

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler189();

Solution

// solution required