Skip to content

Instantly share code, notes, and snippets.

@davidgrenier
Last active December 19, 2015 23:19
Show Gist options
  • Save davidgrenier/6034357 to your computer and use it in GitHub Desktop.
Save davidgrenier/6034357 to your computer and use it in GitHub Desktop.
let transpose3 = function
| [||] -> [||]
| a ->
Array.maxBy Array.length a
|> Array.Parallel.mapi (fun i _ ->
Array.filter (fun js -> Array.length js > i) a
|> Array.map (fun sub -> sub.[i])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment