Remove debugPrinter code
[?]
Dec 30, 2020, 3:00 PM
VLJVFT6WPTQHAYLJQFDS4NIJ7FYURTEFTC5ZSKSCV3KQUBXY27VACDependencies
- [2]
HSJSKGY7Refactoring evaluate functions - [3]
BCLXJIHIgo doc updates - [4]
R6MPEEL2Refactoring minimax tests - [5]
ZAZCOSBXEnhance test readability by renaming couple variables - [6]
NJFOEVJ3Initial import - [7]
G5KXCVILtictactoe: initial import
Change contents
- edit in snippets/tictactoe/tictactoe.go at line 4
import ("fmt""os")const debug = true - edit in snippets/tictactoe/tictactoe.go at line 16
func debugPrinter(format string, a ...interface{}) {if debug {fmt.Fprintf(os.Stderr, format+"\n", a...)}} - edit in snippets/tictactoe/minimax_test.go at line 25
//debugPrinter("len(scores): %d, height: %v int(height): %d", len(tc.scores), height, int(height))