Skip to content

Instantly share code, notes, and snippets.

@WhiteCat6142
Created December 16, 2018 05:21
Show Gist options
  • Save WhiteCat6142/a3270468cbf829200b7f66acd048b1a2 to your computer and use it in GitHub Desktop.
Save WhiteCat6142/a3270468cbf829200b7f66acd048b1a2 to your computer and use it in GitHub Desktop.
bsort=foldr bs []
where bs x []=[x]
bs x (y:ys)|x<=y =(x:y:ys)
|otherwise =(y:bs x ys)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment