-
-
Save hongbo-miao/715893c8399aed02a4737da4fdfb951c to your computer and use it in GitHub Desktop.
one line transpose for 2-dimensional Javascript arrays
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function transpose(a) | |
{ | |
return a[0].map(function (_, c) { return a.map(function (r) { return r[c]; }); }); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment