Created
February 20, 2013 19:27
-
-
Save thejefflarson/4998499 to your computer and use it in GitHub Desktop.
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
| def min_hash! | |
| min = Infinity | |
| freq.keys.each do |key| | |
| min = key.hash if key.hash < min | |
| end | |
| self.min_hash = min == Infinity ? 0 : min | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment