aboutsummaryrefslogtreecommitdiff
path: root/test/solitaire.go
AgeCommit message (Collapse)Author
2012-02-24test/[n-z]*.go: add documentationRob Pike
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5700056
2012-02-22test: use testlib in a few more cases.Rémy Oudompheng
R=golang-dev, rsc CC=golang-dev, remy https://golang.org/cl/5688057
2011-10-25cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: ↵Russ Cox
use rune Nothing terribly interesting here. R=golang-dev, bradfitz, gri, r CC=golang-dev https://golang.org/cl/5300043
2010-09-03solitaire: an exercise in backtracking and string conversionsRobert Griesemer
Solves the (English) peg solitaire game. The board is represented by a 1-dimensional array for easy representation of directions with a single integer. The board's contents are chosen such that it can be printed with a direct string() conversion. R=r CC=adg, golang-dev https://golang.org/cl/2066042