/// <summary>
    /// Checks all possible combinations and prints the list of all found successful.
    /// </summary>
    static void PlayGameFindAllMode()
    {
        Queen aliciaTheRed = new Queen();

        aliciaTheRed.FindAndPrintAllSolutions();
    }