Skip to content

Instantly share code, notes, and snippets.

@deech
Created July 13, 2014 16:29
Show Gist options
  • Save deech/5253d72d946e8365816e to your computer and use it in GitHub Desktop.
Save deech/5253d72d946e8365816e to your computer and use it in GitHub Desktop.
100 people!
kill ((x:y:ys), zs) = kill (ys, zs ++ [x])
kill ([x], (_:zs)) = kill (zs, [x])
kill ([x], []) = x
kill ([], zs) = kill (zs, [])
run = kill ([1..100], [])
> run
73
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment