Skip to content

Instantly share code, notes, and snippets.

@pinzolo
Created January 6, 2014 02:52
Show Gist options
  • Save pinzolo/8277493 to your computer and use it in GitHub Desktop.
Save pinzolo/8277493 to your computer and use it in GitHub Desktop.
Array クラスに uniq? メソッドを追加する
class Array
# Is self a unique array?
def uniq?
self.uniq.size == self.size
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment