Skip to content

Command line implementation of the board game Mastermind for a Software Engineering class

Notifications You must be signed in to change notification settings

SleekPanther/mastermind-game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mastermind

Command line implementation of the board game Mastermind for a Software Engineering class

Algorithm

An adaptation of the Knuth Algorithm

  1. The computer generates all possible 4-character code of unique colors
  2. Picks a random code from these possibilities & calls an evaluation function feedback
  3. It then loops over all remaining possibilities, calls the evaluation function & compares the new feedback to the feedback from the 1st guess eliminating all possibilities that give different feedback. (e.g. if the evaluation function returns "2 correct color & location" and "1 correct color, incorrect location" it removes all codes that don't give the feedback 2 & 1).
  4. Go back to step 2, pick another code from remaining possibilities & evaluate all other possibilities eliminating the ones that score the same. This continues until it's the correct code or the game runs out of guesses.

Releases

No releases published

Packages

No packages published

Languages