Skip to content

Instantly share code, notes, and snippets.

@ibarland
Created March 30, 2018 21:00
Show Gist options
  • Save ibarland/211d119b7f3270885d51bbf81b3ead9c to your computer and use it in GitHub Desktop.
Save ibarland/211d119b7f3270885d51bbf81b3ead9c to your computer and use it in GitHub Desktop.
assert Arrays.deepEquals(
rotateMatrix( new String[][]{ {" ", "X", " "}
{" ", "X", "X"},
{" ", " ", " "} } ),
new String[][]{ {" ", " ", " "}
{" ", "X", "X"},
{" ", "X", " "} } )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment