2018-09-30 23:01:58 +01:00
---
id: 5900f4291000cf542c50ff3c
challengeType: 5
title: 'Problem 189: Tri-colouring a triangular grid'
2019-08-05 09:17:33 -07:00
forumTopicId: 301825
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Consider the following configuration of 64 triangles:
We wish to colour the interior of each triangle with one of three colours: red, green or blue, so that no two neighbouring triangles have the same colour. Such a colouring shall be called valid. Here, two triangles are said to be neighbouring if they share an edge.
2018-10-08 01:01:53 +01:00
Note: if they only share a vertex, then they are not neighbours.
2018-09-30 23:01:58 +01:00
For example, here is a valid colouring of the above grid:
A colouring C' which is obtained from a colouring C by rotation or reflection is considered distinct from C unless the two are identical.
How many distinct valid colourings are there for the above configuration?
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: < code > euler189()</ code > should return 10834893628237824.
2019-07-26 19:26:37 -07:00
testString: assert.strictEqual(euler189(), 10834893628237824);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function euler189() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
euler189();
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
// solution required
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
< / section >