Giter VIP home page Giter VIP logo

gokata's Introduction

Go Kata

The aim of this kata is to write a program that can determine whether a move in Go is a legal move.

The Game Of Go

Go (simplified Chinese: 围棋; traditional Chinese: 圍棋; pinyin: wéiqí, Japanese: 囲碁 igo, Korean: 바둑 baduk) is a board game involving two players that originated in ancient China more than 2,500 years ago. It was considered one of the four essential arts of a cultured Chinese scholar in antiquity. Its earliest written reference dates back to the Confucian Analects.

There is significant strategy involved in the game, and the number of possible games is vast (10^761 compared, for example, to the 10^120 possible in chess), despite its relatively simple rules.

Go is a very difficult game for computers to play well and professional players still beat the strongest AIs. Fortunately for us this kata is not about writing a program that can play Go, but simply about writing a program that can determine whether a move is legal according to the rules of Go , this should be a lot easier!

The Board

The board is a grid of horizontal and vertical lines. The lines of the board have intersections wherever they cross or touch each other. Each intersection is called a point. That includes the four corners, and the edges of the board.

A go Board

The example board has 25 points. The red circle shows one particular point. The red square in the corner shows another point.

Two points connected by a line segment are said to be adjacent or next to one another. The triangles are adjacent. The crosses are not adjacent.

A go Board

The Stones

There are 2 players, black and white. The players place pieces (called "stones" on the board)

Players place stones on the points of the board. Here is a board with some stones placed on it.

A go Board

Capture

If a player surrounds the opponent's stone or stones completely, he captures those stones and removes them from the board.

Every stone on the board must be next to an empty point. (An empty point next to a stone is called a liberty.)

If a stone is not next to an empty point, but it's next to some other stones of the same color which are next to an empty point, that's fine too. (Strings of adjacent stones "share liberties".)

If there are no empty points next to a stone or a string of stones (the stone has no liberties), the stones are immediately taken off the board.

Example 1

The white stone is almost surrounded. It is next to only one empty point, shown by the square. (Remember, only points connected by a line segment are next to one another. So the circles do not count as liberties, for example.)

A go Board

Black's move [1] surrounds the white stone completely.

A go Board

The white stone is captured and removed from the board

A go Board

Example 2

The three white stones are connected along the lines of the board, and stand or fall together.

A go Board

Black's move [1] occupies their last liberty

A go Board

The 3 white stones are captured and removed from the board

A go Board

The Rules of Go

  1. The board is empty at the onset of the game.
  2. Black places the first stone, after which White and Black alternate.
  3. Stones cannot be placed on occupied points.
  4. No self-capture. Stones cannot be placed where they would be immediately captured
  5. If placing a stone causes an opponent's stone to be captured, the opponents stones are removed from the board before the liberties of your stone(s) are calculated
  6. You cannot place a stone to put the game back in the same position as it was on your last turn (this prevents infinite loops in play)

The Kata

Write a program that, given a board state and a move will determine whether the move is a legal Go move, according to the rules 1-6.

For added bonus points:

Output the board state before and after the move in some sort of user-friendly way. Perhaps an ascii representation.

Building the project.

The easiest way to build and run the tests is through SBT. You will need to install SBT if you want to build the project this way.

The project follows the standard sbt layout so sources in src/main/scala will be automatically compiled. You can run the code with

sbt run

There is a placeholder application class that just prints out a hello method

You can run all the tests with:

sbt test

This skeleton project has just 1 pending test.

Importing you your IDE

IntelliJ

You can import SBT projects directly into IntelliJ from File->Import Project. You will need the Scala and SBT plugin installed. IntelliJ should prompt you if you don't already have these.

Eclipse

Execute sbt in root folder to generate project folder, then exit sbt:

cd gokata
sbt
> exit

Add sbteclipse plugin by creating new file plugins.sbt in project folder. Then add this line to the new file and save it:

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")

Generate eclipse project:

sbt
> eclipse

Now, you can import the project directly into Eclipse from File -> Import..., choose General -> Existing Project into Workspace. You need Scala IDE 4.0.x plugin installed.

gokata's People

Contributors

luugiathuy avatar radioactivesg avatar russellwstanley avatar

Watchers

 avatar  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.