gomoku {fun} | R Documentation |
The game of Gomoku, a.k.a Five in a row
Description
There are two players in this game who play one after the other using black and white stones respectively. The winner is the first player to get an unbroken row of five stones horizontally, vertically, or diagonally.
Usage
gomoku(n = 19)
Arguments
n |
the number of rows and columns in the board (the default 19 generates the standard board) |
Value
NULL
Note
The players should judge the winner by themselves; this function does not do this job (patches are welcome, of course).
Author(s)
Yihui Xie <https://yihui.org>; modified from the code by pklin
References
https://d.cosx.org/d/104750, https://en.wikipedia.org/wiki/Gomoku
Examples
gomoku()
[Package fun version 0.3 Index]