Giter Club home page Giter Club logo

mastermind's Introduction

Mastermind

Tools for playing the game Mastermind - https://en.wikipedia.org/wiki/Mastermind_(board_game)

Including minimax solver

Prerequesites

Python 3+, see here one way to install https://docs.anaconda.com/anaconda/install/

Getting started

pip install -r requirements.txt

Running tests

pytest .

Example

import mastermind

# create a game
game = mastermind.Game([1, 2, 3, 4],6,4)

FIRST_GUESS = (1, 2, 6, 6)
# make a guess
guess_result = game.guess(FIRST_GUESS)    

guess_result
# 2, 0 since we got two 'red' exactly right (1,2) and no 'white' right counter wrong position

# get recommendation of best move
rec = mastermind.find_best_guess(game.all_guesses, game.remaining_possible)
# (0,0,1,1) pro tip optimal first move is two of two different colours

mastermind's People

Contributors

oli5679 avatar olicairns avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.