Haskell and Python do not seem to agree with the results of Murmurhash2. Python, Java, and PHP returned the same results, but Haskell does not. Am I doing something wrong regarding Murmurhash2 at Haskell?
Here is my code for Haskell Murmurhash2:
import Data.Digest.Murmur32 main = do print $ asWord32 $ hash32WithSeed 1 "woohoo"
And here is the code written in Python:
import murmur if __name__ == "__main__": print murmur.string_hash("woohoo", 1)
Python returned 3650852671 while Haskell returned 3966683799
python haskell hash murmurhash mismatch
Axel adventure
source share