Sha256: 076993758a9868f986ebc27dda75939f977aa6a50d09b7c4d7a723057cf230b5
Contents?: true
Size: 241 Bytes
Versions: 69
Compression:
Stored size: 241 Bytes
Contents
defmodule Connect do @doc """ Calculates the winner (if any) of a board using "O" as the white player and "X" as the black player """ @spec result_for([String.t()]) :: :none | :black | :white def result_for(board) do end end
Version data entries
69 entries across 69 versions & 1 rubygems