Ad
  • Custom User Avatar

    Okay, I dont know if you have tested that kata, but doesnt even works as intended, has a lot of complains, and its super old. I think this kata deserves to replace that one.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    I dont know Why I seen the random test cases not well formated, idk if is there something I misunderstood or the tests dont work

    [
      [
        ' ', ' ', ' ',
        ' ', ' ', ' ',
        ' ', ' '
      ],
      [
        ' ', ' ', ' ',
        '♔', ' ', ' ',
        ' ', ' '
      ],
      [
        ' ', ' ', ' ',
        ' ', ' ', ' ',
        ' ', ' '
      ],
      [ ' ', ' ', ' ', ' ', ' ', [ '♛', '♜', '♝', '♞', '♟' ], ' ', ' ' ],
      [
        ' ', ' ', ' ',
        ' ', ' ', ' ',
        ' ', ' '
      ],
      [ ' ', [ '♛', '♜', '♝', '♞', '♟' ], ' ', ' ', ' ', ' ', ' ', ' ' ],
      [
        ' ', ' ', ' ',
        ' ', ' ', ' ',
        ' ', ' '
      ],
      [
        ' ', ' ', ' ',
        ' ', ' ', ' ',
        ' ', ' '
      ]
    ]
    

    Sometimes, it has arrays into the arrays, like, 3 dimensional instead of two, Idk if this a Kata problem or what

    I would expect something like

    [
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', '♟', ' ', ' ', ' ', ' '],
    			[' ', ' ', '♔', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
    	]
    

    but instead is something like

    
    [
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', [' ', ' ', '♟'], ' ', ' ', ' ', ' '],
    			[' ', ' ', '♔', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
    			[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
    	]
    

    Why?

  • Custom User Avatar
  • Custom User Avatar

    yeah, same here, how is it possible? can even be completed this kata?

  • Default User Avatar
  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar