Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chiswicked/color-matching-dice
Arrange 4 colored side dice in a row so that no color repeats itself on either side
https://github.com/chiswicked/color-matching-dice
dice go golang
Last synced: 2 months ago
JSON representation
Arrange 4 colored side dice in a row so that no color repeats itself on either side
- Host: GitHub
- URL: https://github.com/chiswicked/color-matching-dice
- Owner: chiswicked
- License: lgpl-3.0
- Created: 2019-02-14T19:43:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-15T00:07:30.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T23:29:25.176Z (6 months ago)
- Topics: dice, go, golang
- Language: Go
- Size: 242 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-golang-repositories - color-matching-dice
README
[![Build Status](https://travis-ci.org/chiswicked/color-matching-dice.svg?branch=master)](https://travis-ci.org/chiswicked/color-matching-dice)
[![Go Report Card](https://goreportcard.com/badge/github.com/chiswicked/color-matching-dice)](https://goreportcard.com/report/github.com/chiswicked/color-matching-dice)
# Color Matching Dice
Arrange 4 colored side dice in a row so that no color repeats itself on either side.![Color Matching Dice Image](dice.jpg)
## The Dice
Die | Top | Left | Front | Right | Rear | Bottom
--- | --- | --- | --- | --- | --- | ---
#1 | Green | Yellow | Blue | Yellow | Red | Yellow
#2 | Green | Blue | Blue | Yellow | Red | Green
#3 | Red | Yellow | Yellow | Blue | Red | Green
#4 | Yellow | Blue | Green | Red | Red | Green## Find All Possible Solutions
```
git clone https://github.com/chiswicked/color-matching-dice.git
cd color-matching-dice
go run main.go
```