Ad
  • Custom User Avatar

    given board = [ [ 4, 1, 3, 2 ], [ 3, 0, 0, 1 ], [ 1, 0, 0, 3 ], [ 2, 0, 1, 4 ] ]

    expected = [[1, 4, 3, 2], [2, 3, 4, 1], [4, 2, 1, 3], [3, 1, 2, 4]]

    How is this possible!!