Retired

Sudoku Solution Validator (retired)

12,440 of 42,838xDranik
Description
Loading description...
Data Structures
Algorithms
  • Please sign in or sign up to leave a comment.
  • Umut D. Avatar

    just one random test (below) failing, wants a false. tested manually and on a sudoku solver, the board is correct. it should be true, but expects a false.

    {1, 2, 3, 4, 5, 6, 7, 8, 9} {2, 3, 1, 5, 6, 4, 8, 9, 7} {3, 1, 2, 6, 4, 5, 9, 7, 8} {4, 5, 6, 7, 8, 9, 1, 2, 3} {5, 6, 4, 8, 9, 7, 2, 3, 1} {6, 4, 5, 9, 7, 8, 3, 1, 2} {7, 8, 9, 1, 2, 3, 4, 5, 6} {8, 9, 7, 2, 3, 1, 5, 6, 4} {9, 7, 8, 3, 1, 2, 6, 4, 5}

  • Vlad12 Avatar

    Expected 'false' on input of < pre>1 2 3 4 5 6 7 8 9| |2 3 1 5 6 4 8 9 7| |3 1 2 6 4 5 9 7 8| |4 5 6 7 8 9 1 2 3| |5 6 4 8 9 7 2 3 1| |6 4 5 9 7 8 3 1 2| |7 8 9 1 2 3 4 5 6| |8 9 7 2 3 1 5 6 4| |9 7 8 3 1 2 6 4 5|< /pre>: expected true to equal false

    It's should return true... but why false?

  • vailcolorado13 Avatar

    My solution that checks only if the 3x3 squares are valid passes all the tests, I do not beleive that should work as I would still need to check all of the rows and columns.

  • huntertrammell Avatar

    This one was a challenge for sure, but very much enjoyed!

  • hobovsky Avatar

    This kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/171.
    Please join the discussion to help us identify duplicate kata and retire them.

  • Gates_TN Avatar

    i think the last test should be True expected not false! test.assert_equals(valid_solution([[1, 2, 3, 4, 5, 6, 7, 8, 9] ,[2, 3, 4, 5, 6, 7, 8, 9, 1] ,[3, 4, 5, 6, 7, 8, 9, 1, 2] ,[4, 5, 6, 7, 8, 9, 1, 2, 3] ,[5, 6, 7, 8, 9, 1, 2, 3, 4] ,[6, 7, 8, 9, 1, 2, 3, 4, 5] ,[7, 8, 9, 1, 2, 3, 4, 5, 6] ,[8, 9, 1, 2, 3, 4, 5, 6, 7] ,[9, 1, 2, 3, 4, 5, 6, 7, 8]]), False);

  • j4r3kb Avatar

    This naive solution of mine (checking only rows) https://www.codewars.com/kata/reviews/599ac698a48343e7b90027e1/groups/63ab134c94973c0001c7aba0 passes all tests. This should not happen.

  • elvintern Avatar

    This comment has been hidden.

  • donut87 Avatar

    This comment has been hidden.

  • ynot01 Avatar

    Attempts will have few or sometimes no checks with zeros in them, leading to solutions that don't check for zeros to pass with a few tries

  • VahanHoppar Avatar

    evary time checking returns different results 99/106, 105/106, 101/106... im almost sure that my code is 100% correct, can u fix this issue

  • matthew-hre Avatar

    random test (below) failing, wants a false. tested manually and on a sudoku solver, the board is correct. it should be true, but expects a false.

    [[3, 4, 5, 9, 7, 8, 6, 2, 1], [6, 7, 9, 2, 1, 4, 5, 8, 3], [2, 1, 8, 6, 3, 5, 7, 4, 9], [8, 2, 3, 5, 4, 9, 1, 7, 6], [5, 6, 1, 8, 2, 7, 3, 9, 4], [7, 9, 4, 3, 6, 1, 8, 5, 2], [1, 5, 7, 4, 9, 3, 2, 6, 8], [4, 3, 2, 7, 8, 6, 9, 1, 5], [9, 8, 6, 1, 5, 2, 4, 3, 7]]

  • imnot Avatar

    4th test in python seems to be valid but asserts False I've passed every other test (including random) except this [1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 1, 3, 7, 5] [7, 5, 6, 3, 8, 4, 2, 1, 9] [6, 4, 3, 1, 5, 8, 7, 9, 2] [5, 2, 1, 7, 9, 3, 8, 4, 6] [9, 8, 7, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 5, 8, 1, 7, 9, 2, 4] [8, 7, 9, 6, 4, 2, 1, 3, 5]

  • SjoerdCap Avatar

    This comment has been hidden.

  • IoghiStudio Avatar

    This comment has been hidden.

  • nikogenix Avatar

    This comment has been hidden.

  • StiveJobbsYeahh Avatar

    Hello everyone. Test Failed Test: {1, 2, 3, 4, 5, 6, 7, 8, 9} {2, 3, 1, 5, 6, 4, 8, 9, 7} {3, 1, 2, 6, 4, 5, 9, 7, 8} {4, 5, 6, 7, 8, 9, 1, 2, 3} {5, 6, 4, 8, 9, 7, 2, 3, 1} {6, 4, 5, 9, 7, 8, 3, 1, 2} {7, 8, 9, 1, 2, 3, 4, 5, 6} {8, 9, 7, 2, 3, 1, 5, 6, 4} {9, 7, 8, 3, 1, 2, 6, 4, 5} Expected: False But was: True This table is correct (I checked that manually) but I can't pass the test.

  • pini85 Avatar

    This comment has been hidden.

  • nmanduley Avatar

    This comment has been hidden.

  • phillip-alter Avatar

    I found it hard, especially having to figure out how to grab each of the blocks. Figured it out in the end, was so satisfying.

  • suanow Avatar

    Hey guys! How can we see the inputs of the tests, which are not passed? I got 6 random test failed and can't understand what's wrong with the code

  • DinislamCODE Avatar

    this kata so easy for 4kyu, imho this should be 5kyu

  • transan Avatar

    Wow, it is a tricky kata, but finally my code passed and learned something new.

    Happy coding!

  • ozeber Avatar

    This comment has been hidden.

  • LukaszSwierzewsk Avatar

    It was really hard for me but after few hours I solved this kata :D

    The hardest part was checking to 3x3 grids if they are correct

  • ernestoacosta75 Avatar

    The first assertFalse of the class used for testing is wrong. After all the modifications done in the first and second child arrays, there is not any value equals zero, so..... the matrix should be considered as a valid board and by consequence, true.

  • b3nzuk3 Avatar

    This comment has been hidden.

  • Narongkorn Avatar

    I am stuck on last one, can someone explain why this became Flase [[1, 2, 3, 4, 5, 6, 7, 8, 9] ,[2, 3, 4, 5, 6, 7, 8, 9, 1] ,[3, 4, 5, 6, 7, 8, 9, 1, 2] ,[4, 5, 6, 7, 8, 9, 1, 2, 3] ,[5, 6, 7, 8, 9, 1, 2, 3, 4] ,[6, 7, 8, 9, 1, 2, 3, 4, 5] ,[7, 8, 9, 1, 2, 3, 4, 5, 6] ,[8, 9, 1, 2, 3, 4, 5, 6, 7] ,[9, 1, 2, 3, 4, 5, 6, 7, 8]] it has none

  • Mehroz786 Avatar

    Is last test is ok or not?

  • jcsahnwaldt Avatar

    The tests for the Java version are really bad. This lousy, fake, no-good "solution" passes the tests.

    I'd like to fix the tests, but they are locked. Only users with > 10k reputation can edit them.

    For example, there are no fixed tests with a board in which all columns and rows are correct but the blocks aren't. This solution doesn't correctly check the blocks, and this solution doesn't check them at all, but both pass the tests (well, most of the time – sometimes they fail the random tests).

  • jcsahnwaldt Avatar

    This comment has been hidden.

  • jcsahnwaldt Avatar

    The Rust version doesn't have a test in which all columns, rows and blocks have the sum 45, but are incorrect nonetheless, e.g. because the board is filled with all 5s.

  • jcsahnwaldt Avatar

    The Rust translation has no test with a board in which all columns and rows are correct, but the blocks aren't. For example, this solution doesn't check the blocks, but it passes the tests.

  • Imperius1488 Avatar

    Not everyone knows the rules of Sudoku to understand that there should not be repeating numbers in one block. I would add this to the description

  • msseguin Avatar

    Just missing where this test case is invalid while debugging my code, been staring at it for a bit so thought I'd just ask: [[1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 1, 3, 7, 5] [7, 5, 6, 3, 8, 4, 2, 1, 9] [6, 4, 3, 1, 5, 8, 7, 9, 2] [5, 2, 1, 7, 9, 3, 8, 4, 6] [9, 8, 7, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 5, 8, 1, 7, 9, 2, 4] [8, 7, 9, 6, 4, 2, 1, 3, 5]]

  • SyedSalman007 Avatar

    Can only tell me that is test case 4 correct cause i am trying to solve it for last ew hours

  • NasriDini Avatar

    This comment has been hidden.

  • Sayandziro Avatar

    Cant understand why is this False. I have only this test unexcepted. Looks True for me.

    Test number 6

    [[1, 2, 3, 4, 5, 6, 7, 8, 9] ,[2, 3, 4, 5, 6, 7, 8, 9, 1] ,[3, 4, 5, 6, 7, 8, 9, 1, 2] ,[4, 5, 6, 7, 8, 9, 1, 2, 3] ,[5, 6, 7, 8, 9, 1, 2, 3, 4] ,[6, 7, 8, 9, 1, 2, 3, 4, 5] ,[7, 8, 9, 1, 2, 3, 4, 5, 6] ,[8, 9, 1, 2, 3, 4, 5, 6, 7] ,[9, 1, 2, 3, 4, 5, 6, 7, 8]]), False);

  • joszze Avatar

    I want to use flat, but Node version < 11

  • Dess1996 Avatar

    This is my first 4kyu kata. I solved it. Thank you so much)

  • marcosherreroa Avatar

    Much more tests are necessary !! Lots of wrong solutions are being accepted !!

  • bigcacturne Avatar

    This feels like it belongs as a 6 kyu kata instead of 4. And also the tests aren't rigorous enough. My solution actually passed before I even checked the horizontal rows.

    Still, fun.

  • Awesome A.D. Avatar

    New Rust translation, includes random tests.

  • helmxd Avatar

    I enjoyed this kata, but a lot of these issues seem to be derived from the "subsquares" category. In sudoku, there are 3x3 grids (or squares) for each square that also must not have any of the same numbers in that 3x3 grid. From what I've read, the tests don't check every square, so I would change that.

    I would also recommend updating the kata description just so there are no further headaches from issues being raised from a misunderstanding (I understand that there is a wikipedia article linked to inform others about sudoku, but realistically not that many of us are going to read that). It'll just makes this whole message board a lot simplier imo.

  • eurydice5717 Avatar

    Very poor Kata. My solution ignores '0' entries (which is forbidden) and passes !

  • Mohammad Almomani Avatar

    all tests done in this kata only test the first block, not all the 9 blocks; please add more cases to the test so it checks other blocks

    for one of my submitted solutions, this case returns true, and it should return false

    [ [2, 3, 1, 5, 6, 4, 8, 9, 7],

    [4, 5, 6, 7, 8, 9, 1, 2, 3],

    [8, 9, 7, 2, 3, 1, 5, 6, 4],

    [3, 1, 2, 6, 4, 5, 9, 7, 8],

    [1, 2, 3, 4, 5, 6, 7, 8, 9],

    [5, 6, 4, 8, 9, 7, 2, 3, 1],

    [6, 4, 5, 9, 7, 8, 3, 1, 2],

    [7, 8, 9, 1, 2, 3, 4, 5, 6],

    [9, 7, 8, 3, 1, 2, 6, 4, 5]]

  • khorneflakes Avatar

    This comment has been hidden.

  • eRoscoe Avatar

    It is telling me when I attempt that this should return false: validSolution([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 1, 5, 6, 4, 8, 9, 7], [3, 1, 2, 6, 4, 5, 9, 7, 8], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 4, 8, 9, 7, 2, 3, 1], [6, 4, 5, 9, 7, 8, 3, 1, 2], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 7, 2, 3, 1, 5, 6, 4], [9, 7, 8, 3, 1, 2, 6, 4, 5]])

    Clearly it should return true. Very frustrating

  • MikChan Avatar

    No random tests in Clojure

  • MikChan Avatar

    No random tests in Scala

  • MikChan Avatar

    This comment has been hidden.

  • MikChan Avatar

    Please, someone check if there are random tests in Clojure, Prolog, Ruby, and Scala. I don't code in these languages, so I am unable to check without forfeiting.

  • MikChan Avatar

    No random tests in Python

  • MikChan Avatar

    No random tests in PHP

  • MikChan Avatar

    No random tests in JavaScript

  • MikChan Avatar

    No random tests in Go

  • MikChan Avatar

    No random tests in C#

  • MikChan Avatar

    No random tests in C++

  • MikChan Avatar

    No random tests in CoffeScript

  • MikChan Avatar

    No random tests in C

  • Reinny Avatar

    How can I view the "attempt" tests? I want to see the 6th test to see what I missed.

  • Panta1 Avatar

    Hi, why this case test should be false?

      [1, 2, 3, 4, 5, 6, 7, 8, 9], 
      [2, 3, 1, 5, 6, 4, 8, 9, 7], 
      [3, 1, 2, 6, 4, 5, 9, 7, 8], 
      [4, 5, 6, 7, 8, 9, 1, 2, 3], 
      [5, 6, 4, 8, 9, 7, 2, 3, 1], 
      [6, 4, 5, 9, 7, 8, 3, 1, 2], 
      [7, 8, 9, 1, 2, 3, 4, 5, 6], 
      [8, 9, 7, 2, 3, 1, 5, 6, 4], 
      [9, 7, 8, 3, 1, 2, 6, 4, 5]
    

    Good kata, thanks!

  • eland94 Avatar

    Hi, in final tests I've got valid board with invalid test expectation (false).

    1 2 3 4 5 6 7 8 9 2 3 1 5 6 4 8 9 7 3 1 2 6 4 5 9 7 8 4 5 6 7 8 9 1 2 3 5 6 4 8 9 7 2 3 1 6 4 5 9 7 8 3 1 2 7 8 9 1 2 3 4 5 6 8 9 7 2 3 1 5 6 4 9 7 8 3 1 2 6 4 5

  • Charliethompson17 Avatar

    The last example test expects false, but is a valid solution. If I change the example test to assertTrue, so that i can submit my code and acess the random tests, my code passes all the random tests. absolutley no reason the last grid should return false!

    5 3 4 6 7 8 9 1 2
    6 7 2 1 9 5 3 4 8
    1 9 8 3 4 2 5 6 7
    8 5 9 7 6 1 4 2 3
    4 2 6 8 0 3 7 9 1
    7 1 3 9 2 4 8 5 6
    9 6 1 5 3 7 2 8 4
    2 8 7 4 1 9 6 3 5
    3 4 5 2 8 6 1 7 9

  • tsydikov Avatar

    Test/Attempt is not working: Expected 'false' on input of [ [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], [ 2, 3, 1, 5, 6, 4, 8, 9, 7 ], [ 3, 1, 2, 6, 4, 5, 9, 7, 8 ], [ 4, 5, 6, 7, 8, 9, 1, 2, 3 ], [ 5, 6, 4, 8, 9, 7, 2, 3, 1 ], [ 6, 4, 5, 9, 7, 8, 3, 1, 2 ], [ 7, 8, 9, 1, 2, 3, 4, 5, 6 ], [ 8, 9, 7, 2, 3, 1, 5, 6, 4 ], [ 9, 7, 8, 3, 1, 2, 6, 4, 5 ] ] but it is true!

  • bitcanon Avatar

    Very good kata, loved it! Thanks :)

  • tobibot Avatar

    Test needs fix: Columns are not checked.

  • Tushar Vashist Avatar

    Test/Attempt is not working:

    Expected 'true' on input of

    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    : expected false to equal true

  • blessedboy Avatar

    Hi, guys!

    Can someone tell me, why this text [1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 1, 3, 7, 5] [7, 5, 6, 3, 8, 4, 2, 1, 9] [6, 4, 3, 1, 5, 8, 7, 9, 2] [5, 2, 1, 7, 9, 3, 8, 4, 6] [9, 8, 7, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 5, 8, 1, 7, 9, 2, 4] [8, 7, 9, 6, 4, 2, 1, 3, 5] should returns False instead of True?

  • Litoprobka Avatar
  • OmAlmighty Avatar

    This comment has been hidden.

  • pablo53 Avatar

    I think this kata is too easy for 4kyu.

  • shubhampathak09 Avatar

    I think the tricky part was to check each of those 3X3 possible boxes.

  • Vucius Avatar

    This comment has been hidden.

  • CalderJohnson Avatar

    last text seems innacurate... [[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]] is a valid solution no?

  • ron-dev Avatar

    Last test should be fixed

  • Juancelio Avatar

    This comment has been hidden.

  • Sage22 Avatar

    This comment has been hidden.

  • pigeonStrikesBack Avatar

    In c my solution was accepted, even if i checked only for blocks correctness,

    {{1,2,3,1,2,3,1,2,3}, {4,5,6,4,5,6,4,5,6}, {7,8,9,7,8,9,7,8,9}, {1,2,3,1,2,3,1,2,3}, {4,5,6,4,5,6,4,5,6}, {7,8,9,7,8,9,7,8,9}, {1,2,3,1,2,3,1,2,3}, {4,5,6,4,5,6,4,5,6}, {7,8,9,7,8,9,7,8,9}}

    should return false but my code returns true, in spite of this I passed all the tests. please add check for row/column number repetition

  • DenavDot Avatar

    this and this are correct in my opinion, does anyone know why is it expected to be false?

  • DenavDot Avatar

    This comment has been hidden.

  • zayniddindev Avatar

    Thank you, xDranik, for this amazing kata😊

  • antilamer Avatar

    This comment has been hidden.

  • pragatij1990@gmail.com Avatar

    why is this not a valid slution? [[1, 3, 2, 5, 7, 9, 4, 6, 8], [4, 9, 8, 2, 6, 1, 3, 7, 5], [7, 5, 6, 3, 8, 4, 2, 1, 9], [6, 4, 3, 1, 5, 8, 7, 9, 2], [5, 2, 1, 7, 9, 3, 8, 4, 6], [9, 8, 7, 4, 2, 6, 5, 3, 1], [2, 1, 4, 9, 3, 5, 6, 8, 7], [3, 6, 5, 8, 1, 7, 9, 2, 4], [8, 7, 9, 6, 4, 2, 1, 3, 5]]

  • adrianespora Avatar

    This comment has been hidden.

  • dchatg Avatar

    I passed all attempts except the fourth :(, does anyone know what this test is? I would like to know where is my problem.

  • JoaoCST21 Avatar

    This comment has been hidden.

  • Erzhan_Chyngyshbekov Avatar

    Expected 'false' on input of

    1 2 3 4 5 6 7 8 9
    2 3 1 5 6 4 8 9 7
    3 1 2 6 4 5 9 7 8
    4 5 6 7 8 9 1 2 3
    5 6 4 8 9 7 2 3 1
    6 4 5 9 7 8 3 1 2
    7 8 9 1 2 3 4 5 6
    8 9 7 2 3 1 5 6 4
    9 7 8 3 1 2 6 4 5
    : expected true to equal false ??????????????????

  • 024GHOST Avatar

    i forgot that the 3 by 3 grids existed

  • jaycan Avatar

    [1, 2, 3, 4, 5, 6, 7, 8, 9] [2, 3, 4, 5, 6, 7, 8, 9, 1] [3, 4, 5, 6, 7, 8, 9, 1, 2] [4, 5, 6, 7, 8, 9, 1, 2, 3] [5, 6, 7, 8, 9, 1, 2, 3, 4] [6, 7, 8, 9, 1, 2, 3, 4, 5] [7, 8, 9, 1, 2, 3, 4, 5, 6] [8, 9, 1, 2, 3, 4, 5, 6, 7] [9, 1, 2, 3, 4, 5, 6, 7, 8]

    Why is this being logged as "True should equal False" - it's a valid solution i.e True? Thx

  • alexMamani Avatar

    This comment has been hidden.

  • Trapyy Avatar

    input: [1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 0, 3, 7, 5] [7, 0, 6, 3, 8, 0, 2, 1, 9] [6, 4, 3, 1, 5, 0, 7, 9, 2] [5, 2, 1, 7, 9, 0, 8, 4, 6] [9, 8, 0, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 0, 8, 1, 7, 9, 2, 4] [8, 7, 0, 6, 4, 2, 1, 3, 5] Expected result = False Returns True

    my code on the site returns True, but on my code editor returns False, is it bugged?

  • zappa78 Avatar

    This comment has been hidden.

  • Rovshen Avatar

    should_pass_all_tests Log 5 6 1 8 4 7 9 2 3 3 7 9 5 2 1 6 8 4 4 2 8 9 6 3 1 7 5 6 1 3 7 8 9 5 4 2 7 9 4 6 5 2 3 1 8 8 5 2 1 3 4 7 9 6 9 3 5 4 7 8 2 6 1 1 4 6 2 9 5 8 3 7 2 8 7 3 1 6 4 5 9 //-- 8 7 1 3 6 4 9 5 2 2 3 9 1 5 8 4 6 7 6 5 4 7 9 2 8 1 3 3 8 2 5 1 9 7 4 6 4 1 6 8 7 3 5 2 9 7 9 5 4 2 6 1 3 8 5 6 8 2 4 7 3 9 1 9 4 7 6 3 1 2 8 5 1 2 3 9 8 5 6 7 4 //-- 1 2 3 4 5 6 7 8 9 2 3 1 5 6 4 8 9 7 3 1 2 6 4 5 9 7 8 4 5 6 7 8 9 1 2 3 5 6 4 8 9 7 2 3 1 6 4 5 9 7 8 3 1 2 7 8 9 1 2 3 4 5 6 8 9 7 2 3 1 5 6 4 9 7 8 3 1 2 6 4 5 //-- Expected: false Actual: true

    Should the correct answer be the truth?

  • Rovshen Avatar

    This comment has been hidden.

  • Lili36 Avatar

    fun, but maybe too easy for 4kyu, some 6kyu seems harder than that ?

  • FeriAfshar Avatar

    This comment has been hidden.

  • Juro1212 Avatar

    This comment has been hidden.

  • guyb2022 Avatar

    I'm failing one of the tests, but I cant see why it failed. how can I see the failing test input?

  • Itsacon Avatar

    Am I the only one who spent lots of time debugging their solution, only to finally notice that the requirements omit the standard Sudoku requirement concerning the diagonals also being complete sets?

  • stanik Avatar

    This comment has been hidden.

  • CodingSamples Avatar

    KOTLIN TRANSLATION

    Please review and approve.

  • ngntrgduc Avatar

    Why my stupid solution still pass with all test cases ? :v.

    I think there shoud be a test like the test1 of this fork. With that test, my solution will be wrong. And I think there mustn't have any solution like this :v.

  • kekia Avatar

    easy kata i think this one should be 5 kata

  • Madjosz Avatar

    Java improvement

    • added a test case with all valid rows and columns but invalid 3x3 squares
    • updated tests to JUnit 5
  • nauseous_spartan Avatar

    Really forces you to think in terms of a coordinate system and how to call the desired values with respect to coordinates

  • MACAYCZ Avatar

    in my function is board only array of ints not array of arrays of ints, why?

  • CodingSamples Avatar

    I tried to implement a clean java solution -> https://www.codewars.com/kata/reviews/599ffcffc91db961910009fb/groups/61f4b260fb076500017a03e5 Would be great if you give your feedback =)

  • Yanni2 Avatar

    pls add random tests

  • user6414652 Avatar

    True should equal False? This has to be the most straight forward True sudoku

    [1, 2, 3, 4, 5, 6, 7, 8, 9],
    [2, 3, 4, 5, 6, 7, 8, 9, 1],
    [3, 4, 5, 6, 7, 8, 9, 1, 2],
    [4, 5, 6, 7, 8, 9, 1, 2, 3],
    [5, 6, 7, 8, 9, 1, 2, 3, 4],
    [6, 7, 8, 9, 1, 2, 3, 4, 5],
    [7, 8, 9, 1, 2, 3, 4, 5, 6],
    [8, 9, 1, 2, 3, 4, 5, 6, 7],
    [9, 1, 2, 3, 4, 5, 6, 7, 8]
    
  • tito.plauto Avatar

    Hi, can someone explain me why it expects this to be 'true'? And what does that 'pre' mean? And why the input isn't an array? My function seems to work on other tests. Thanks a lot

    Expected 'true' on input of

    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    : expected false to equal true

  • Xatamaran Avatar

    test Expected 'false' on input of

    1 2 3 4 5 6 7 8 9
    2 3 1 5 6 4 8 9 7
    3 1 2 6 4 5 9 7 8
    4 5 6 7 8 9 1 2 3
    5 6 4 8 9 7 2 3 1
    6 4 5 9 7 8 3 1 2
    7 8 9 1 2 3 4 5 6
    8 9 7 2 3 1 5 6 4
    9 7 8 3 1 2 6 4 5
    : expected true to equal false

  • Nikeron2020 Avatar

    Nice kata!!! If your code doesn't pass all of the tests, read task more clearly. Don't be in hurry, think twice before writing anything :)

  • Brandon Lecky Avatar

    If Boards containing one or more zeroes are considered to be invalid solutions. then why does it expect true when I return false on a row containing [0, 1, 2, 3, 4, 6, 7, 8, 9]?

    Language was Javascript.

  • adepeju4 Avatar

    how are the little squares supposed to contain numbers 1-9? please help me understand :,(

  • Zelderon Avatar

    This comment has been hidden.

  • raulpy271 Avatar

    This comment has been hidden.

  • seniorCrutchDeveloper Avatar

    At first glance it seems easier than it really is). Nice kata.

  • VictorHavran Avatar

    What is the last test i feel like ive tried everything but it keeps failing at the last one

  • devonbrewster Avatar

    I submitted my solution for Java and the moreRandomTests failed. I manually checked and my code is correct, it is the expected solution that is wrong. This one expects false -

    4 5 6 8 9 7 1 2 3 7 8 9 2 3 1 4 5 6 1 2 3 5 6 4 7 8 9 8 9 1 3 4 2 5 6 7 2 3 4 6 7 5 8 9 1 5 6 7 9 1 8 2 3 4 6 7 8 1 2 9 3 4 5 9 1 2 4 5 3 6 7 8 3 4 5 7 8 6 9 1 2

  • AceLoveC Avatar

    why must test6 be false when there are all digits between 1 and 9 ? it gives me this message: "The expression (validSolution(test6)) == (0) is false." but it should be true and not false {[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 1, 5, 6, 4, 8, 9, 7], [3, 1, 2, 6, 4, 5, 9, 7, 8], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 4, 8, 9, 7, 2, 3, 1], [6, 4, 5, 9, 7, 8, 3, 1, 2], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 7, 2, 3, 1, 5, 6, 4], [9, 7, 8, 3, 1, 2, 6, 4, 5]}

    (i do it in C language)

  • user9599903 Avatar

    the solution of the author of this kata generates False whereas it should be equal to True

    please check this input and give me your feedback

    [[1 3 2 5 7 9 4 6 8]
     [4 9 8 2 6 1 3 7 5]
     [7 5 6 3 8 4 2 1 9]
     [6 4 3 1 5 8 7 9 2]
     [5 2 1 7 9 3 8 4 6]
     [9 8 7 4 2 6 5 3 1]
     [2 1 4 9 3 5 6 8 7]
     [3 6 5 8 1 7 9 2 4]
     [8 7 9 6 4 2 1 3 5]]
    

    I generated a list(flatten) of values for each block

    [1 3 2 4 9 8 7 5 6]
    [5 7 9 2 6 1 3 8 4]
    [4 6 8 3 7 5 2 1 9]
    [6 4 3 5 2 1 9 8 7]
    [1 5 8 7 9 3 4 2 6]
    [7 9 2 8 4 6 5 3 1]
    [2 1 4 3 6 5 8 7 9]
    [9 3 5 8 1 7 6 4 2]
    [6 8 7 9 2 4 1 3 5]
    

    I generated a set of values for each block

    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    {1, 2, 3, 4, 5, 6, 7, 8, 9}
    
  • user9599903 Avatar

    Hi gues, solution this kata do not work correctly

    this input return False

    review your solution for this input

    [[1 3 2 5 7 9 4 6 8]
     [4 9 8 2 6 1 3 7 5]
     [7 5 6 3 8 4 2 1 9]
     [6 4 3 1 5 8 7 9 2]
     [5 2 1 7 9 3 8 4 6]
     [9 8 7 4 2 6 5 3 1]
     [2 1 4 9 3 5 6 8 7]
     [3 6 5 8 1 7 9 2 4]
     [8 7 9 6 4 2 1 3 5]]
    
  • jsvalvn725 Avatar

    Hi, guys. I need help on completing this kata, my solution works perfectly on fixed test, but when attempting the solution it gives this error, there seems to be cause by the pre tag appearing in the test result.

    I'm attepting this kata using javascript

    Expected 'false' on input of

    1 2 3 4 5 6 7 8 9
    2 3 1 5 6 4 8 9 7
    3 1 2 6 4 5 9 7 8
    4 5 6 7 8 9 1 2 3
    5 6 4 8 9 7 2 3 1
    6 4 5 9 7 8 3 1 2
    7 8 9 1 2 3 4 5 6
    8 9 7 2 3 1 5 6 4
    9 7 8 3 1 2 6 4 5
    : expected true to equal false

    I already log the board array and there's nothing wrong with the array, here is the log

    [ [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], [ 2, 3, 1, 5, 6, 4, 8, 9, 7 ], [ 3, 1, 2, 6, 4, 5, 9, 7, 8 ], [ 4, 5, 6, 7, 8, 9, 1, 2, 3 ], [ 5, 6, 4, 8, 9, 7, 2, 3, 1 ], [ 6, 4, 5, 9, 7, 8, 3, 1, 2 ], [ 7, 8, 9, 1, 2, 3, 4, 5, 6 ], [ 8, 9, 7, 2, 3, 1, 5, 6, 4 ], [ 9, 7, 8, 3, 1, 2, 6, 4, 5 ] ]

  • valerioio Avatar

    I think the fifth test in the attempt in JavaScript should be valid:

    8 2 6 3 4 7 5 9 1
    7 3 5 8 1 9 6 4 2
    1 9 4 2 6 5 8 7 3
    3 1 7 5 8 4 2 6 9
    6 5 9 1 7 2 4 3 8
    4 8 2 9 3 6 7 1 5
    9 4 8 7 5 1 3 2 6
    5 6 1 4 2 3 9 8 7
    2 7 3 6 9 8 1 5 4
    
  • 66  Avatar

    Boards containing one or more zeroes are considered to be invalid solutions. =)

    [492856913, 176423459, 385791726, 753284261, 941635387, 628179045, 453678900, 519348172, 234567898]

    Expected: true Actual: false

  • laloptk Avatar

    With my PHP solution, when I click on the "Test" button, everything passes, I included more tests just to be sure. But when I click in "Attempt" not even one test passes. I checked, because the first check I do in my code is check for zeroes, and yes, when clicking on "Test" everything works, if there is a zero in the matrix, the function will return false, but when "Attempt" if the test array has zeroes the interpreter or whatever it is, will ignore the conditionals and return true every time, if I just cheat and return false, the test will say the expected value is true, so, seems like that test is completely broken.

  • Sekiro_19 Avatar

    [ [1, 3, 2, 5, 7, 9, 4, 6, 8], [4, 9, 8, 2, 6, 1, 3, 7, 5], [7, 5, 6, 3, 8, 4, 2, 1, 9], [6, 4, 3, 1, 5, 8, 7, 9, 2], [5, 2, 1, 7, 9, 3, 8, 4, 6], [9, 8, 7, 4, 2, 6, 5, 3, 1], [2, 1, 4, 9, 3, 5, 6, 8, 7], [3, 6, 5, 8, 1, 7, 9, 2, 4], [8, 7, 9, 6, 4, 2, 1, 3, 5] ]

    True should equal False

    But why i ckecked with my eyes, bruh!

  • Nam01ar Avatar

    This test 6 i think should be true...but is false, dont see why

    True should equal False

    board:[[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]

  • Samratrai Avatar

    Why this is not the valid sudoko?

    1. Only 1-9 numbers
    2. 1-9 numbers in each column and each row.
    3. 1 to 9 number in each 3*3 grid.

    What else is left, test 4 is not working.

  • Tosha<3 Avatar

    C++ version of kata should use more modern and familiar type for passing board to function. Passing fixed arrays is very unusual to C++, and if we taking into account that it is actually a pointer to fixed array it becomes even more non-obvious, unsafe and inconvenient to work with. I think there is should be some container from STL, such as std::vector< std::vector< unsigned int > > or std::array< std::array< unsigned int, 3 >, 3 >.

  • adilet19 Avatar

    This problem is for 6 kyu, but i can earn more honor HAHAHA

  • pustoj0@gmail.com Avatar

    This comment has been hidden.

  • user2057554 Avatar

    The tests are insufficient and will accept invalid sudokus. Check my solution for clarification.

  • Keklas Avatar

    This comment has been hidden.

  • nikita_blin Avatar

    This comment has been hidden.

  • pie_thon_prince Avatar

    [1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 1, 3, 7, 5] [7, 5, 6, 3, 8, 4, 2, 1, 9] [6, 4, 3, 1, 5, 8, 7, 9, 2] [5, 2, 1, 7, 9, 3, 8, 4, 6] [9, 8, 7, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 5, 8, 1, 7, 9, 2, 4] [8, 7, 9, 6, 4, 2, 1, 3, 5] True should equal False

    Columns 8 and 9 have duplicate values (3 and 5 respectively). When I run in Virtual Studio (Python version 3.9) I get False. When run in codewars it comes back as True. The data set I've attached above is directly above the error "True should equal False. Is anyone able to assit? Kata attempted in Python. Thanks

  • Ciprian Amza Avatar

    There are only 6 tests in Python (?)

  • goran555 Avatar

    During the attempt, test 4 returns True when it should return False, if I test the case in pycharm it works and returns False, the sudoku board contains 0 and the first for loop in my code checks for a 0 row1 = board[0] row2 = board[1] row3 = board[2] row4 = board[3] row5 = board[4] row6 = board[5] row7 = board[6] row8 = board[7] row9 = board[8] for row in rows: if 0 in row: return False Why does this not work in the codewars interpreter?

  • ansis m Avatar

    I took my own solution from a 5 kyu kata "Did I Finish my Sudoku?" and passed without any modifications. This kata should be retired.

  • RNOH Avatar

    There seems to be lack of tests judging by my solution.

  • Mohrezakhorasany Avatar

    This comment has been hidden.

  • teknaturk Avatar

    Tests are not enough.

  • bozbozghandi Avatar

    This comment has been hidden.

  • Meruzhan123 Avatar

    I have a very rare edge case that sows up in the "more random tests" section and breaks my algorith. How can I find out what this edge case it because I have tried a lot of cases on my own IDE and am having no incorrect results. I cannot read the stack trace but does anyone know how I can find the paramter that caused my code to fail?

  • user9644768 Avatar

    Ruby 3.0 should be enabled, see this to learn how to do it

  • MeedMen Avatar

    it's working but i have a problem in the test6 idk why can i get the sudoku of the test 6 to see where is the problem in my solution ?

  • jonahsaltzman Avatar

    My javascript solution works in my IDE, but in codewars, when I use the following line in my solution:

    columns[j].push(board[i][j]);

    it gives me "TypeError: columns[j].push is not a function". However the exact same code works in my IDE, and I know this should work in javascript. Maybe this is not a kata-specific issue but I need to contact codewars directly about their javascript implementation?

    Also to note: I do NOT get this error when I only press "Test" in codewars (and my solution does pass those tests). It is only when I press "Attempt" that this error occurs, even though the code has not changed.

  • Qizo Avatar

    I have a test: [[1, 3, 2, 5, 7, 9, 4, 6, 8], [4, 9, 8, 2, 6, 0, 3, 7, 5], [7, 0, 6, 3, 8, 0, 2, 1, 9], [6, 4, 3, 1, 5, 0, 7, 9, 2], [5, 2, 1, 7, 9, 0, 8, 4, 6], [9, 8, 0, 4, 2, 6, 5, 3, 1], [2, 1, 4, 9, 3, 5, 6, 8, 7], [3, 6, 0, 8, 1, 7, 9, 2, 4], [8, 7, 0, 6, 4, 2, 1, 3, 5]]

    and CodeWars think it's True (uncorrect), but on my compiler return False(correct). How it possible?? I resseted task, but it isn't work

  • Luksonaッ Avatar

    This comment has been hidden.

  • Fill Freakin Avatar

    This comment has been hidden.

  • jeremiesiller Avatar

    I am not even sure my solution is correct because theres only one test which is false because of an box mistake.

  • CMEXOTPOH Avatar

    Sudoku keeps the mind spry.

  • crmapache Avatar

    i hate that kata. spend 1.5 hours for that (

  • KovDimaY Avatar

    Weird that there exist almost the same kata (Validate Sudoku with size NxN), but what is even more weird is that they both have the same rank 🤷‍♂️

  • Q2MORY-17 Avatar

    This comment has been hidden.

  • khoadev Avatar

    [1, 3, 2, 5, 7, 9, 4, 6, 8] [4, 9, 8, 2, 6, 1, 3, 7, 5] [7, 5, 6, 3, 8, 4, 2, 1, 9] [6, 4, 3, 1, 5, 8, 7, 9, 2] [5, 2, 1, 7, 9, 3, 8, 4, 6] [9, 8, 7, 4, 2, 6, 5, 3, 1] [2, 1, 4, 9, 3, 5, 6, 8, 7] [3, 6, 5, 8, 1, 7, 9, 2, 4] [8, 7, 9, 6, 4, 2, 1, 3, 5]

    I think this test is supposed to be True, but the answer is False at the moment.

  • olegkovtun Avatar

    My solution on Java is the shortest and clear enough :)

  • Algerd Avatar

    This comment has been hidden.

  • akar-0 Avatar

    This comment has been hidden.

  • BNM-9000 Avatar

    I did it the brute force way. Not proud, but at least my code can be read by a monkey.

  • firstyouth Avatar

    Test Failed Test: {1, 2, 3, 4, 5, 6, 7, 8, 9} {2, 3, 1, 5, 6, 4, 8, 9, 7} {3, 1, 2, 6, 4, 5, 9, 7, 8} {4, 5, 6, 7, 8, 9, 1, 2, 3} {5, 6, 4, 8, 9, 7, 2, 3, 1} {6, 4, 5, 9, 7, 8, 3, 1, 2} {7, 8, 9, 1, 2, 3, 4, 5, 6} {8, 9, 7, 2, 3, 1, 5, 6, 4} {9, 7, 8, 3, 1, 2, 6, 4, 5} Expected: False But was: True

    Why this test is false ??

  • KrH.EF Avatar

    Add this tests to your solution and check it:

    Test.assertEquals(validSolution([[5, 5, 5, 5, 5, 5, 5, 5, 5], 
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5],
                                     [5, 5, 5, 5, 5, 5, 5, 5, 5]]), false);
                                     
    Test.assertEquals(validSolution([[45, 0, 0, 0, 0, 0, 0, 0, 0], 
                                     [0, 0, 0, 45, 0, 0, 0, 0, 0],
                                     [0, 0, 0, 0, 0, 0,45, 0, 0],
                                     [0,45, 0, 0, 0, 0, 0, 0, 0],
                                     [0, 0, 0, 0,45, 0, 0, 0, 0],
                                     [0, 0, 0, 0, 0, 0, 0,45, 0],
                                     [0, 0,45, 0, 0, 0, 0, 0, 0],
                                     [0, 0, 0, 0, 0,45, 0, 0, 0],
                                     [0, 0, 0, 0, 0, 0, 0, 0,45]]), false);
    
  • HumaNSLayeR Avatar

    The test code doesnt check for whole rows and columns. It only checks 3x3 squares.

  • stok Avatar

    In scala, the first and third tests in the main attempt seem odd:

    6 7 2 1 9 5 3 4 8 1 9 8 3 4 2 5 6 7 8 5 9 7 6 1 4 2 3 4 2 6 8 5 3 7 9 1 7 1 3 9 2 4 8 5 6 9 6 1 5 3 7 2 8 4 2 8 7 4 1 9 6 3 5 3 4 5 2 8 6 1 7 9 should be valid

    4 9 8 2 6 1 3 7 5 7 5 6 3 8 4 2 1 9 6 4 3 1 5 8 7 9 2 5 2 1 7 9 3 8 4 6 9 8 7 4 2 6 5 3 1 2 1 4 9 3 5 6 8 7 3 6 5 8 1 7 9 2 4 8 7 9 6 4 2 1 5 3 should be valid

  • sarat1669 Avatar

    This comment has been hidden.

  • ShehabMuhammad Avatar

    Here there're multiple twos in the second and third rows,

    Test(True,[Int32[], Int32[], Int32[], Int32[], Int32[], ...]) Test Failed Test: Here: {5, 3, 4, 6, 7, 8, 9, 1, 2} {3, 7, 2, 1, 9, 5, 3, 4, 8} {4, 2, 8, 3, 4, 2, 5, 6, 7}

    {6, 1, 3, 7, 6, 1, 4, 2, 3} {7, 9, 4, 6, 5, 3, 7, 9, 1} {8, 5, 2, 1, 3, 4, 8, 5, 6} {9, 3, 5, 4, 7, 8, 2, 8, 4} {1, 4, 6, 2, 9, 5, 8, 3, 5} {2, 8, 7, 3, 1, 6, 4, 5, 9} Expected: True But was: False

    Yet it expects true, I'm sorry But I didn't get it so far, Could someone please explain?

  • Luckkkky Avatar

    Log [[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]] True should equal False

    can u take a look on that please because i dont know it should be fine

  • VenomIL Avatar

    I have have a False positive for the sudoku below, and I can't find what is wrong with it (not with my code with the soduku).could you please explain to me?

                    [[1, 3, 2, 5, 7, 9, 4, 6, 8], 
                    [4, 9, 8, 2, 6, 1, 3, 7, 5], 
                    [7, 5, 6, 3, 8, 4, 2, 1, 9],
                    [6, 4, 3, 1, 5, 8, 7, 9, 2], 
                    [5, 2, 1, 7, 9, 3, 8, 4, 6], 
                    [9, 8, 7, 4, 2, 6, 5, 3, 1], 
                    [2, 1, 4, 9, 3, 5, 6, 8, 7], 
                    [3, 6, 5, 8, 1, 7, 9, 2, 4], 
                    [8, 7, 9, 6, 4, 2, 1, 3, 5]] 
    
  • jrgf Avatar

    Isn't this kata asking the same as the one on the link below? I used the solution i had to the linked kata and it worked on this one because they are both asking the same despite being different levels supposedly. https://www.codewars.com/kata/53db96041f1a7d32dc0004d2

  • moshic Avatar

    Hi looking at the test: Test.assertEquals(validSolution([ [5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]), true);

    According to the definitions, every sub grid 3X3 should contain 1-9 digits. As far as I see, please look at the sub grid starting on position [0, 2] - the number 4 See that it's missing number 5: 4,6,7 2,1,9 8,3,4 Maybe I miss something. Thanks

  • nihilok Avatar

    no idea why i'm failing that final test :'(

    anyone know what's different about it?

    EDIT: solved it tried checking for things that weren't equal instead of checking for things that were ;)

  • user4124297 Avatar

    This comment has been hidden.

  • s7ucks Avatar

    Expected 'true' on input of

    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    - Expected: true, instead got: false

    Expected 'false' on input of

    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    1 2 3 4 5 6 7 8 9
    - Expected: false, instead got: true

    Anyone know why this happen? Both same input but expecting a different output?

  • tsp888 Avatar

    This comment has been hidden.

  • EricB10 Avatar

    This comment has been hidden.

  • AlexSUNdr Avatar

    Sory for my bad English, But I think that this Kata must have more tests, for example, I write a simple code where I counting amaunts in every 3*3 square, in every horizontal and vertical line and compare this sums with 45(it is a sum from 1 to 9). [ [4, 3, 4, 6, 7, 8, 9, 1, 3], [6, 7, 2, 1, 9, 5, 3, 4, 8], [2, 9, 8, 3, 4, 2, 5, 6, 6], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9] ] - this is the test where my solution does not work, but with my silution I passed all the tests. There you can see my code - https://pastebin.com/PDuUXBYs I hope that not only me find this problem, sorry if I copy someones issue

  • hassanr99 Avatar

    Test: {1, 2, 3, 4, 5, 6, 7, 8, 9} {2, 3, 1, 5, 6, 4, 8, 9, 7} {3, 1, 2, 6, 4, 5, 9, 7, 8} {4, 5, 6, 7, 8, 9, 1, 2, 3} {5, 6, 4, 8, 9, 7, 2, 3, 1} {6, 4, 5, 9, 7, 8, 3, 1, 2} {7, 8, 9, 1, 2, 3, 4, 5, 6} {8, 9, 7, 2, 3, 1, 5, 6, 4} {9, 7, 8, 3, 1, 2, 6, 4, 5} Expected: False But... It's returns true;

  • NDA1811 Avatar

    Test: {1, 2, 3, 4, 5, 6, 7, 8, 9} {2, 3, 1, 5, 6, 4, 8, 9, 7} {3, 1, 2, 6, 4, 5, 9, 7, 8} {4, 5, 6, 7, 8, 9, 1, 2, 3} {5, 6, 4, 8, 9, 7, 2, 3, 1} {6, 4, 5, 9, 7, 8, 3, 1, 2} {7, 8, 9, 1, 2, 3, 4, 5, 6} {8, 9, 7, 2, 3, 1, 5, 6, 4} {9, 7, 8, 3, 1, 2, 6, 4, 5} Expected: False But was: True

  • PyroTM Avatar

    This comment has been hidden.

  • UniGavin Avatar

    It says True should equal False, but I can't spot the problem
    [[1, 3, 2, 5, 7, 9, 4, 6, 8],
    [4, 9, 8, 2, 6, 1, 3, 7, 5],
    [7, 5, 6, 3, 8, 4, 2, 1, 9],
    [6, 4, 3, 1, 5, 8, 7, 9, 2],
    [5, 2, 1, 7, 9, 3, 8, 4, 6],
    [9, 8, 7, 4, 2, 6, 5, 3, 1],
    [2, 1, 4, 9, 3, 5, 6, 8, 7],
    [3, 6, 5, 8, 1, 7, 9, 2, 4],
    [8, 7, 9, 6, 4, 2, 1, 3, 5]]

    This is the only one failed outta six random tests

  • mano93 Avatar

    It says True should equal False, but i am getting False [[1, 3, 2, 5, 7, 9, 4, 6, 8], [4, 9, 8, 2, 6, 0, 3, 7, 5], [7, 0, 6, 3, 8, 0, 2, 1, 9], [6, 4, 3, 1, 5, 0, 7, 9, 2], [5, 2, 1, 7, 9, 0, 8, 4, 6], [9, 8, 0, 4, 2, 6, 5, 3, 1], [2, 1, 4, 9, 3, 5, 6, 8, 7], [3, 6, 0, 8, 1, 7, 9, 2, 4], [8, 7, 0, 6, 4, 2, 1, 3, 5]] False

  • FlintOFF Avatar

    This test must returns TRUE instead FALSE [[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]

  • nejc.schneider Avatar

    This comment has been hidden.

  • Scia52 Avatar

    This comment has been hidden.

  • zLuki Avatar

    There are no random tests!

  • rge123 Avatar

    5 tests are not enough really...

  • Serey08 Avatar

    My code passes 5/6 checks. True should equal False. Is it possible to see how the Sudoku he decides is not correct?

  • pietrotull Avatar

    I think the description needs a small fix, it says "...and every cell only contains integers from 0 to 9", but the integers are actually from 1 to 9.

  • hobovsky Avatar

    In Scala, test cases have multiline names, and this causes confusing behavior. Part of the name (first line) is used as header of collapsible test case section, and remaining lines appear in a way similar to stdout log output. This can (and does, see post below) cause confusion and problems with correct interpretation of log messages.

  • pietrotull Avatar

    This comment has been hidden.

  • os.orishko Avatar

    Since there already is a 4kyu kata to Validate NxN sudoku (https://www.codewars.com/kata/540afbe2dc9f615d5e000425) that uses OOP and validates sudoku of arbitrary size, I am really surprised that this is 4 kyu and I see that a lot of others are voicing similar opinions.

  • user6720290 Avatar

    too easy for 4 kyu

  • Legedith Avatar

    This comment has been hidden.

  • spademarck2020 Avatar

    This comment has been hidden.

  • CrashDump Avatar

    Why this sudoku is not vaild? [ [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], [ 2, 3, 1, 5, 6, 4, 8, 9, 7 ], [ 3, 1, 2, 6, 4, 5, 9, 7, 8 ], [ 4, 5, 6, 7, 8, 9, 1, 2, 3 ], [ 5, 6, 4, 8, 9, 7, 2, 3, 1 ], [ 6, 4, 5, 9, 7, 8, 3, 1, 2 ], [ 7, 8, 9, 1, 2, 3, 4, 5, 6 ], [ 8, 9, 7, 2, 3, 1, 5, 6, 4 ], [ 9, 7, 8, 3, 1, 2, 6, 4, 5 ] ]