Hi all,
I'm new to Haskell and I'd like you to take a look at one of my programs and tell me how you would improve it (in terms of efficiency, style, and so on!).
(I'm not a Stanford student, so by helping me out you won't help me to cheat my exam, don't worry!)
I've implemented 3 versions of the algorithm:
- a Haskell version using the standard "sort": read all the words from stdin, sort them and group them.
- a Haskell version using map: read all the words from stdin, stick each word in a Data.Map incrementing a counter if the word is already present in the map.
- a Python version using defaultdict.
The python version is the quickest (I stripped out the fancy formatting before benchmarking, so IO is not responsible for the time difference).
Any comments on the graph, too?
Thanks a lot!
L.