Skip to content

Instantly share code, notes, and snippets.

@jonathanpike
Created October 15, 2015 19:36
Show Gist options
  • Save jonathanpike/eea3306066c7452dbfa6 to your computer and use it in GitHub Desktop.
Save jonathanpike/eea3306066c7452dbfa6 to your computer and use it in GitHub Desktop.
def remove_duplicates(arr)
new = []
arr.each do |i|
if ! new.include?(i)
new << i
end
end
return new
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment