diff --git a/Source/Example/Program.cs b/Source/Example/Program.cs index 7cbb369..9556f9f 100644 --- a/Source/Example/Program.cs +++ b/Source/Example/Program.cs @@ -12,6 +12,7 @@ { var line = Console.ReadLine(); Console.WriteLine("# " + line); + // Fill the grid with zeros indicating that that slot can be used to roll on and the rest will be filled with -1 (non placeble) var data = line!.Split(" ").Select(c => Int32.Parse(c)).Select(c => c != 0 ? 0 : -1).ToArray(); arr.Add(data); }