Skip to content

Instantly share code, notes, and snippets.

@joshwcomeau
Last active July 1, 2016 21:09
Show Gist options
  • Save joshwcomeau/5b600d561f07f21b1618e1ec0fde3c2e to your computer and use it in GitHub Desktop.
Save joshwcomeau/5b600d561f07f21b1618e1ec0fde3c2e to your computer and use it in GitHub Desktop.
Snail
const flipMatrix = matrix => (
matrix[0].map((column, index) => (
matrix.map(row => row[index])
))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment