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.
9 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
13
votes
8
answers
937
views
Count the Liberties - Advanced
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, ...
10
votes
3
answers
673
views
The maximum liberty of a group on a Go board
Bounty
One of the convincing conjectures, by Loopy Walt is,
...
15
votes
9
answers
1k
views
Count the Liberties
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 ...
22
votes
1
answer
483
views
Is this Game of Go configuration fully alive?
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 ...
58
votes
37
answers
9k
views
Which Go rank is higher?
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
Place a stone on an empty Go board
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 board. Black moves first — for example, ...
14
votes
4
answers
1k
views
Build a deterministic Go AI
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 ...
16
votes
3
answers
1k
views
Make a move on a Go board
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 ...
23
votes
5
answers
4k
views
Score a game of Go
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 ...