swkMagdeburg / 2017-11-09-Mastermind

Code Kata Mastermind

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kata Mastermind

Difficulty: medium Source: http://codingdojo.org/kata/Mastermind/

Have you ever played Mastermind? This game where one player, a codemaker, has to choose a secret combination of colored pegs and then make it guess to someone else, a codebreaker. The codemaker is answering to each guess attempt of the codebreaker by indicating only the number of well placed colors and the number of correct but misplaced colors.

If you remember playing the game, being the one who guesses is very brain demanding, whereas the other player get bored rapidly.

Problem Description

The idea of this Kata is to code an algorithm capable of playing this boring role: answering the number of well placed and misplaced colors.

Therefore, your function should return, for a secret and a guessing combination:

the number of well placed colors
the number of correct but misplaced colors

A combination can contain any number of pegs but you’d better give the same number for the secret and the guessing. You can use any number of colors.

Clues

It’s better to start by detecting well placed colors.
Detecting misplaced colors is about counting them…

Suggested Test Cases

For a secret [blue, red, green, pink] and a guess [yellow, red, blue, purple] the answer should be : 1 well placed and 1 misplaced.

Some other basic examples:

evaluate([blue], [red]) should return [0, 0]  
evaluate([blue], [blue]) should return [1, 0]  
evaluate([red, yellow], [blue, red]) should return [0, 1]  

Take care to start simple and choose wisely the following tests in order to have a nice TDD progression…

About

Code Kata Mastermind


Languages

Language:C# 53.7%Language:Java 46.3%