Created
January 6, 2014 02:52
-
-
Save pinzolo/8277493 to your computer and use it in GitHub Desktop.
Array クラスに uniq? メソッドを追加する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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