Skip to content

Instantly share code, notes, and snippets.

@voila
Last active December 30, 2015 05:49
Show Gist options
  • Select an option

  • Save voila/7784787 to your computer and use it in GitHub Desktop.

Select an option

Save voila/7784787 to your computer and use it in GitHub Desktop.
delete_all(_, [], Acc) ->
lists:reverse(Acc);
delete_all(X, [X|Rest], Acc) ->
delete_all(X, Rest, Acc);
delete_all(X, [Y|Rest], Acc) ->
delete_all(X, Rest, [Y|Acc]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment