Skip to content

Commit eba7034

Browse files
committed
Fixed compile
1 parent 0a02d55 commit eba7034

File tree

1 file changed

+1
-1
lines changed
  • src/main/elixir/g0001_0100/s0051_n_queens

1 file changed

+1
-1
lines changed

Diff for: src/main/elixir/g0001_0100/s0051_n_queens/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ defmodule Solution do
6363
end
6464

6565
defp normalize(board, n) do
66-
for {{x, y}, i} <- Enum.with_index(board) do
66+
for { {x, y}, i} <- Enum.with_index(board) do
6767
0..n-1
6868
|> Enum.map(fn j ->
6969
if {n - i - 1, j} == {x, y}, do: "Q", else: "."

0 commit comments

Comments
 (0)