Crosses and Circles











up vote
12
down vote

favorite












Place two crosses on two cells of each row and column of this 9×9 board, and circles elsewhere, so that the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses.



enter image description here










share|improve this question






















  • This is almost like a nonogram!
    – JGibbers
    yesterday










  • Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
    – Voile
    8 hours ago

















up vote
12
down vote

favorite












Place two crosses on two cells of each row and column of this 9×9 board, and circles elsewhere, so that the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses.



enter image description here










share|improve this question






















  • This is almost like a nonogram!
    – JGibbers
    yesterday










  • Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
    – Voile
    8 hours ago















up vote
12
down vote

favorite









up vote
12
down vote

favorite











Place two crosses on two cells of each row and column of this 9×9 board, and circles elsewhere, so that the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses.



enter image description here










share|improve this question













Place two crosses on two cells of each row and column of this 9×9 board, and circles elsewhere, so that the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses.



enter image description here







combinatorics






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked yesterday









Freddy Barrera

33318




33318












  • This is almost like a nonogram!
    – JGibbers
    yesterday










  • Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
    – Voile
    8 hours ago




















  • This is almost like a nonogram!
    – JGibbers
    yesterday










  • Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
    – Voile
    8 hours ago


















This is almost like a nonogram!
– JGibbers
yesterday




This is almost like a nonogram!
– JGibbers
yesterday












Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
– Voile
8 hours ago






Nitpick: the number on the right of each row indicates the number of circles between its two crosses, while the number below each column indicates the number of circles between its two crosses. Both sentences have the same content ("indicates the number of circles between its two crosses") so it's confusing: it implies the row and column numbers mean different things but they actually have the same meaning.
– Voile
8 hours ago












4 Answers
4






active

oldest

votes

















up vote
7
down vote



accepted










Answer is probably this (confessing that this is trial and error):




enter image description here




Approach:




I have started where Row:Col differences are 0:0 (which is either 6,6/9,9 or 6,9/9,6)

Using the walls as an aid, I have used it to identify the adjacent X

i.e. using 6,9 to identify 6,8 as gap for Row 6 is 0.

Similarly using 9,6 to identify 8,6

Next confirmed Xs in-order are 8,1 ; 4,1 ; 4,8


From from 6,9 the next guesses are 5,9 or 7,9 which has a lengthy iteration process ...... (to-be-completed when the time allows)







share|improve this answer






























    up vote
    5
    down vote













    Starting from top row




    (3rd, 7th) column,
    (2, 4),
    (3, 5),
    (1, 8),
    (7, 9),
    (8, 9),
    (2, 4),
    (1, 6),
    (5, 6)


    | | |X| | | |X| | | 3
    | |X| |X| | | | | | 1
    | | |X| |X| | | | | 1
    |X| | | | | | |X| | 6
    | | | | | | |X| |X| 1
    | | | | | | | |X|X| 0
    | |X| |X| | | | | | 1
    |X| | | | |X| | | | 4
    | | | | |X|X| | | | 0
    3 4 1 4 5 0 3 1 0






    share|improve this answer










    New contributor




    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

























      up vote
      4
      down vote













      At the risk of running over my lunch break at work:



      Solution: (verified by other answers)




      SolutionPic




      This is a pure logic solution, similar to Sudoku and others. I forget the name of the exact type of puzzle, but the trick is to fill the entire grid with crosses (+) and only fill in circles (O) where they MUST be.



      For example:




      In row 4, there must be 6 O between +. Therefore, there will be 2 possible sets that will satisfy the condition.
      LogicExplanation
      As you can see, the O in yellow MUST be as such.




      Using this trick, we can fill out rows 4 and 8 as well as columns 2, 4, and 5.




      Step1




      A-ha! We have our first set of + in column 5. But what next?




      Looking back at column 4 and applying the trick (since we already have 2 O), the bottom entry in column 4 must be O...
      Then following the logic condition, row 9 and column 6 are immediately solved, as follows.
      Step2




      The rest is an exercise of repetition. Apologies for the bad Excel snaps and some poor formatting, and hope there is no confusion (or worse, a mistake!).



      Cheers,
      KF






      share|improve this answer








      New contributor




      KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.


















      • Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
        – Dean
        18 hours ago




















      up vote
      3
      down vote













      Solution




      o o x o o o x o o
      o x o x o o o o o
      o o x o x o o o o
      x o o o o o o x o
      o o o o o o x o x
      o o o o o o o x x
      o x o x o o o o o
      x o o o o x o o o
      o o o o x x o o o




      Approach:




      Starting with the 4th row, I placed an X on the left, then 6 o's, then another x, then a final o. In the two columns with x's in, I then placed o's in the cells which couldn't have x's in. From this, I was then able to place o's in other cells which couldn't have x's in, and x's in cells which had to have x's in. Eventually the grid was filled and I checked to ensure each row and column met their criteria. The question did ask, after all, to put o's where there weren't x's.







      share|improve this answer










      New contributor




      RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.


















        Your Answer





        StackExchange.ifUsing("editor", function () {
        return StackExchange.using("mathjaxEditing", function () {
        StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
        StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
        });
        });
        }, "mathjax-editing");

        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "559"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        convertImagesToLinks: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        noCode: true, onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f75916%2fcrosses-and-circles%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes








        up vote
        7
        down vote



        accepted










        Answer is probably this (confessing that this is trial and error):




        enter image description here




        Approach:




        I have started where Row:Col differences are 0:0 (which is either 6,6/9,9 or 6,9/9,6)

        Using the walls as an aid, I have used it to identify the adjacent X

        i.e. using 6,9 to identify 6,8 as gap for Row 6 is 0.

        Similarly using 9,6 to identify 8,6

        Next confirmed Xs in-order are 8,1 ; 4,1 ; 4,8


        From from 6,9 the next guesses are 5,9 or 7,9 which has a lengthy iteration process ...... (to-be-completed when the time allows)







        share|improve this answer



























          up vote
          7
          down vote



          accepted










          Answer is probably this (confessing that this is trial and error):




          enter image description here




          Approach:




          I have started where Row:Col differences are 0:0 (which is either 6,6/9,9 or 6,9/9,6)

          Using the walls as an aid, I have used it to identify the adjacent X

          i.e. using 6,9 to identify 6,8 as gap for Row 6 is 0.

          Similarly using 9,6 to identify 8,6

          Next confirmed Xs in-order are 8,1 ; 4,1 ; 4,8


          From from 6,9 the next guesses are 5,9 or 7,9 which has a lengthy iteration process ...... (to-be-completed when the time allows)







          share|improve this answer

























            up vote
            7
            down vote



            accepted







            up vote
            7
            down vote



            accepted






            Answer is probably this (confessing that this is trial and error):




            enter image description here




            Approach:




            I have started where Row:Col differences are 0:0 (which is either 6,6/9,9 or 6,9/9,6)

            Using the walls as an aid, I have used it to identify the adjacent X

            i.e. using 6,9 to identify 6,8 as gap for Row 6 is 0.

            Similarly using 9,6 to identify 8,6

            Next confirmed Xs in-order are 8,1 ; 4,1 ; 4,8


            From from 6,9 the next guesses are 5,9 or 7,9 which has a lengthy iteration process ...... (to-be-completed when the time allows)







            share|improve this answer














            Answer is probably this (confessing that this is trial and error):




            enter image description here




            Approach:




            I have started where Row:Col differences are 0:0 (which is either 6,6/9,9 or 6,9/9,6)

            Using the walls as an aid, I have used it to identify the adjacent X

            i.e. using 6,9 to identify 6,8 as gap for Row 6 is 0.

            Similarly using 9,6 to identify 8,6

            Next confirmed Xs in-order are 8,1 ; 4,1 ; 4,8


            From from 6,9 the next guesses are 5,9 or 7,9 which has a lengthy iteration process ...... (to-be-completed when the time allows)








            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited yesterday

























            answered yesterday









            Kryesec

            6449




            6449






















                up vote
                5
                down vote













                Starting from top row




                (3rd, 7th) column,
                (2, 4),
                (3, 5),
                (1, 8),
                (7, 9),
                (8, 9),
                (2, 4),
                (1, 6),
                (5, 6)


                | | |X| | | |X| | | 3
                | |X| |X| | | | | | 1
                | | |X| |X| | | | | 1
                |X| | | | | | |X| | 6
                | | | | | | |X| |X| 1
                | | | | | | | |X|X| 0
                | |X| |X| | | | | | 1
                |X| | | | |X| | | | 4
                | | | | |X|X| | | | 0
                3 4 1 4 5 0 3 1 0






                share|improve this answer










                New contributor




                aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






















                  up vote
                  5
                  down vote













                  Starting from top row




                  (3rd, 7th) column,
                  (2, 4),
                  (3, 5),
                  (1, 8),
                  (7, 9),
                  (8, 9),
                  (2, 4),
                  (1, 6),
                  (5, 6)


                  | | |X| | | |X| | | 3
                  | |X| |X| | | | | | 1
                  | | |X| |X| | | | | 1
                  |X| | | | | | |X| | 6
                  | | | | | | |X| |X| 1
                  | | | | | | | |X|X| 0
                  | |X| |X| | | | | | 1
                  |X| | | | |X| | | | 4
                  | | | | |X|X| | | | 0
                  3 4 1 4 5 0 3 1 0






                  share|improve this answer










                  New contributor




                  aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




















                    up vote
                    5
                    down vote










                    up vote
                    5
                    down vote









                    Starting from top row




                    (3rd, 7th) column,
                    (2, 4),
                    (3, 5),
                    (1, 8),
                    (7, 9),
                    (8, 9),
                    (2, 4),
                    (1, 6),
                    (5, 6)


                    | | |X| | | |X| | | 3
                    | |X| |X| | | | | | 1
                    | | |X| |X| | | | | 1
                    |X| | | | | | |X| | 6
                    | | | | | | |X| |X| 1
                    | | | | | | | |X|X| 0
                    | |X| |X| | | | | | 1
                    |X| | | | |X| | | | 4
                    | | | | |X|X| | | | 0
                    3 4 1 4 5 0 3 1 0






                    share|improve this answer










                    New contributor




                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    Starting from top row




                    (3rd, 7th) column,
                    (2, 4),
                    (3, 5),
                    (1, 8),
                    (7, 9),
                    (8, 9),
                    (2, 4),
                    (1, 6),
                    (5, 6)


                    | | |X| | | |X| | | 3
                    | |X| |X| | | | | | 1
                    | | |X| |X| | | | | 1
                    |X| | | | | | |X| | 6
                    | | | | | | |X| |X| 1
                    | | | | | | | |X|X| 0
                    | |X| |X| | | | | | 1
                    |X| | | | |X| | | | 4
                    | | | | |X|X| | | | 0
                    3 4 1 4 5 0 3 1 0







                    share|improve this answer










                    New contributor




                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    share|improve this answer



                    share|improve this answer








                    edited yesterday









                    gabbo1092

                    4,684738




                    4,684738






                    New contributor




                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    answered yesterday









                    aivirai

                    957




                    957




                    New contributor




                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.





                    New contributor





                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.






                    aivirai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.






















                        up vote
                        4
                        down vote













                        At the risk of running over my lunch break at work:



                        Solution: (verified by other answers)




                        SolutionPic




                        This is a pure logic solution, similar to Sudoku and others. I forget the name of the exact type of puzzle, but the trick is to fill the entire grid with crosses (+) and only fill in circles (O) where they MUST be.



                        For example:




                        In row 4, there must be 6 O between +. Therefore, there will be 2 possible sets that will satisfy the condition.
                        LogicExplanation
                        As you can see, the O in yellow MUST be as such.




                        Using this trick, we can fill out rows 4 and 8 as well as columns 2, 4, and 5.




                        Step1




                        A-ha! We have our first set of + in column 5. But what next?




                        Looking back at column 4 and applying the trick (since we already have 2 O), the bottom entry in column 4 must be O...
                        Then following the logic condition, row 9 and column 6 are immediately solved, as follows.
                        Step2




                        The rest is an exercise of repetition. Apologies for the bad Excel snaps and some poor formatting, and hope there is no confusion (or worse, a mistake!).



                        Cheers,
                        KF






                        share|improve this answer








                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.


















                        • Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                          – Dean
                          18 hours ago

















                        up vote
                        4
                        down vote













                        At the risk of running over my lunch break at work:



                        Solution: (verified by other answers)




                        SolutionPic




                        This is a pure logic solution, similar to Sudoku and others. I forget the name of the exact type of puzzle, but the trick is to fill the entire grid with crosses (+) and only fill in circles (O) where they MUST be.



                        For example:




                        In row 4, there must be 6 O between +. Therefore, there will be 2 possible sets that will satisfy the condition.
                        LogicExplanation
                        As you can see, the O in yellow MUST be as such.




                        Using this trick, we can fill out rows 4 and 8 as well as columns 2, 4, and 5.




                        Step1




                        A-ha! We have our first set of + in column 5. But what next?




                        Looking back at column 4 and applying the trick (since we already have 2 O), the bottom entry in column 4 must be O...
                        Then following the logic condition, row 9 and column 6 are immediately solved, as follows.
                        Step2




                        The rest is an exercise of repetition. Apologies for the bad Excel snaps and some poor formatting, and hope there is no confusion (or worse, a mistake!).



                        Cheers,
                        KF






                        share|improve this answer








                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.


















                        • Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                          – Dean
                          18 hours ago















                        up vote
                        4
                        down vote










                        up vote
                        4
                        down vote









                        At the risk of running over my lunch break at work:



                        Solution: (verified by other answers)




                        SolutionPic




                        This is a pure logic solution, similar to Sudoku and others. I forget the name of the exact type of puzzle, but the trick is to fill the entire grid with crosses (+) and only fill in circles (O) where they MUST be.



                        For example:




                        In row 4, there must be 6 O between +. Therefore, there will be 2 possible sets that will satisfy the condition.
                        LogicExplanation
                        As you can see, the O in yellow MUST be as such.




                        Using this trick, we can fill out rows 4 and 8 as well as columns 2, 4, and 5.




                        Step1




                        A-ha! We have our first set of + in column 5. But what next?




                        Looking back at column 4 and applying the trick (since we already have 2 O), the bottom entry in column 4 must be O...
                        Then following the logic condition, row 9 and column 6 are immediately solved, as follows.
                        Step2




                        The rest is an exercise of repetition. Apologies for the bad Excel snaps and some poor formatting, and hope there is no confusion (or worse, a mistake!).



                        Cheers,
                        KF






                        share|improve this answer








                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.









                        At the risk of running over my lunch break at work:



                        Solution: (verified by other answers)




                        SolutionPic




                        This is a pure logic solution, similar to Sudoku and others. I forget the name of the exact type of puzzle, but the trick is to fill the entire grid with crosses (+) and only fill in circles (O) where they MUST be.



                        For example:




                        In row 4, there must be 6 O between +. Therefore, there will be 2 possible sets that will satisfy the condition.
                        LogicExplanation
                        As you can see, the O in yellow MUST be as such.




                        Using this trick, we can fill out rows 4 and 8 as well as columns 2, 4, and 5.




                        Step1




                        A-ha! We have our first set of + in column 5. But what next?




                        Looking back at column 4 and applying the trick (since we already have 2 O), the bottom entry in column 4 must be O...
                        Then following the logic condition, row 9 and column 6 are immediately solved, as follows.
                        Step2




                        The rest is an exercise of repetition. Apologies for the bad Excel snaps and some poor formatting, and hope there is no confusion (or worse, a mistake!).



                        Cheers,
                        KF







                        share|improve this answer








                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.









                        share|improve this answer



                        share|improve this answer






                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.









                        answered yesterday









                        KarmaFodder

                        411




                        411




                        New contributor




                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.





                        New contributor





                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.






                        KarmaFodder is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.












                        • Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                          – Dean
                          18 hours ago




















                        • Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                          – Dean
                          18 hours ago


















                        Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                        – Dean
                        18 hours ago






                        Could you explain this a bit more: "A-ha! We have our first set of + in column 5." I follow your logic that in column 5 we have O in rows 4, 5, 6, 8. I can see how logically you'd have a O in row 2 as well, but how do you eliminate rows 1 & 7 as possible +?
                        – Dean
                        18 hours ago












                        up vote
                        3
                        down vote













                        Solution




                        o o x o o o x o o
                        o x o x o o o o o
                        o o x o x o o o o
                        x o o o o o o x o
                        o o o o o o x o x
                        o o o o o o o x x
                        o x o x o o o o o
                        x o o o o x o o o
                        o o o o x x o o o




                        Approach:




                        Starting with the 4th row, I placed an X on the left, then 6 o's, then another x, then a final o. In the two columns with x's in, I then placed o's in the cells which couldn't have x's in. From this, I was then able to place o's in other cells which couldn't have x's in, and x's in cells which had to have x's in. Eventually the grid was filled and I checked to ensure each row and column met their criteria. The question did ask, after all, to put o's where there weren't x's.







                        share|improve this answer










                        New contributor




                        RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.






















                          up vote
                          3
                          down vote













                          Solution




                          o o x o o o x o o
                          o x o x o o o o o
                          o o x o x o o o o
                          x o o o o o o x o
                          o o o o o o x o x
                          o o o o o o o x x
                          o x o x o o o o o
                          x o o o o x o o o
                          o o o o x x o o o




                          Approach:




                          Starting with the 4th row, I placed an X on the left, then 6 o's, then another x, then a final o. In the two columns with x's in, I then placed o's in the cells which couldn't have x's in. From this, I was then able to place o's in other cells which couldn't have x's in, and x's in cells which had to have x's in. Eventually the grid was filled and I checked to ensure each row and column met their criteria. The question did ask, after all, to put o's where there weren't x's.







                          share|improve this answer










                          New contributor




                          RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.




















                            up vote
                            3
                            down vote










                            up vote
                            3
                            down vote









                            Solution




                            o o x o o o x o o
                            o x o x o o o o o
                            o o x o x o o o o
                            x o o o o o o x o
                            o o o o o o x o x
                            o o o o o o o x x
                            o x o x o o o o o
                            x o o o o x o o o
                            o o o o x x o o o




                            Approach:




                            Starting with the 4th row, I placed an X on the left, then 6 o's, then another x, then a final o. In the two columns with x's in, I then placed o's in the cells which couldn't have x's in. From this, I was then able to place o's in other cells which couldn't have x's in, and x's in cells which had to have x's in. Eventually the grid was filled and I checked to ensure each row and column met their criteria. The question did ask, after all, to put o's where there weren't x's.







                            share|improve this answer










                            New contributor




                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            Solution




                            o o x o o o x o o
                            o x o x o o o o o
                            o o x o x o o o o
                            x o o o o o o x o
                            o o o o o o x o x
                            o o o o o o o x x
                            o x o x o o o o o
                            x o o o o x o o o
                            o o o o x x o o o




                            Approach:




                            Starting with the 4th row, I placed an X on the left, then 6 o's, then another x, then a final o. In the two columns with x's in, I then placed o's in the cells which couldn't have x's in. From this, I was then able to place o's in other cells which couldn't have x's in, and x's in cells which had to have x's in. Eventually the grid was filled and I checked to ensure each row and column met their criteria. The question did ask, after all, to put o's where there weren't x's.








                            share|improve this answer










                            New contributor




                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            share|improve this answer



                            share|improve this answer








                            edited yesterday









                            gabbo1092

                            4,684738




                            4,684738






                            New contributor




                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            answered yesterday









                            RBZ

                            311




                            311




                            New contributor




                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            New contributor





                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






                            RBZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Puzzling Stack Exchange!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                Use MathJax to format equations. MathJax reference.


                                To learn more, see our tips on writing great answers.





                                Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                Please pay close attention to the following guidance:


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f75916%2fcrosses-and-circles%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Måne

                                Storängen

                                VLT Carioca