freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-194-coloured-config...

619 B

id challengeType title videoUrl localeTitle
5900f42f1000cf542c50ff40 5 Problem 194: Coloured Configurations

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler194();

Solution

// solution required