tracks/elixir/exercises/connect/connect.exs in trackler-2.2.1.109 vs tracks/elixir/exercises/connect/connect.exs in trackler-2.2.1.110

- old
+ new

@@ -2,10 +2,9 @@ @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 + @spec result_for([String.t()]) :: :none | :black | :white def result_for(board) do - end end