Skip to content

Instantly share code, notes, and snippets.

@vitkon
Created December 23, 2016 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitkon/df7d649d41c86a24885d1aa596811e9e to your computer and use it in GitHub Desktop.
Save vitkon/df7d649d41c86a24885d1aa596811e9e to your computer and use it in GitHub Desktop.
const rotateMatrix = arr => arr[0].map((col, i) => arr.map(row => row[i]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment