PROJECT EULER · #0189
Tri-colouring a Triangular Grid
Consider the following configuration of

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.
Note: if they only share a vertex, then they are not neighbours.
For example, here is a valid colouring of the above grid:

A colouring
How many distinct valid colourings are there for the above configuration?
Write-up coming later
The complete problem is available here. An approach, code, and answer will be added later.