Skip to content

Instantly share code, notes, and snippets.

@aruprakshit
Created July 9, 2014 10:40
Show Gist options
  • Save aruprakshit/f3001d92d940098a77a5 to your computer and use it in GitHub Desktop.
Save aruprakshit/f3001d92d940098a77a5 to your computer and use it in GitHub Desktop.
count of deleted charcaters
class Array
def number_of_items_deleted(char)
self.size - self.tap { |o| o.delete(char) }.size
end
end
puts %w(a b a d t r).number_of_items_deleted 'a'
# >> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment