Skip to main content

Questions tagged [go]

Go is an Asian board game for two players, with only a handful of very simple rules but very complex dynamics. This tag is not about the Go programming language.

13 votes
8 answers
938 views

Here's an advanced version of the Count the Liberties challenge. The definitions of the terms liberty and group are the same as the previous challenge, so have a look at the previous one for details, ...
xiver77's user avatar
  • 2,395
10 votes
3 answers
674 views

Bounty One of the convincing conjectures, by Loopy Walt is, ...
xiver77's user avatar
  • 2,395
15 votes
9 answers
1k views

Background This challenge is about the game of Go. Go is a game played on a board with a square grid N x N. You don't have to know how to play the game to do this ...
xiver77's user avatar
  • 2,395
22 votes
1 answer
483 views

Background This challenge is about the Game of Go. Here are some rules and terminology relevant to this challenge: Game of Go is a two-player game, played over a square board of size 19x19. One of ...
Bubbler's user avatar
  • 79.3k
58 votes
37 answers
9k views

Players of the traditional board game Go measure their skill in a system of ranks: Players new to the game are ranked 30th kyū (written 30k) and progress counting ...
lynn's user avatar
  • 69.7k
34 votes
19 answers
5k views

See also: Make a move on a Go board. Task Go is a board game where two players (Black and White) place stones on the intersections of grid lines on a 19×19 board. Black moves first — for example, ...
lynn's user avatar
  • 69.7k
14 votes
4 answers
1k views

Here's an interesting problem I thought of the other day, which involves bits of code competing against other bits of code not just in a property that the code has, but by playing a game against those ...
Joe Z.'s user avatar
  • 35.5k
16 votes
3 answers
1k views

You are given a board position for a Go game and a move to play. You need to output whether the move is legal or not, and the new board position if it is legal. A brief explanation of Go moves: the ...
aditsu quit because SE is EVIL's user avatar
23 votes
5 answers
4k views

Scoring a Go game is a task that is not all too easy. In the past there have been several debates about how to design rules to cover all the strange corner cases that may occur. Luckily, in this task ...
FUZxxl's user avatar
  • 10.2k