DEV Community

Discussion on: Solving Algorithm Challenges in Haskell: Anagrams

Collapse
 
byorgey profile image
Brent Yorgey

Nice work! Challenge: rewrite wordFrequencies to return a Map Char Int (using Data.Map.fromListWith), and then combine the maps.

Collapse
 
theodesp profile image
Theofanis Despoudis

TIL Data.Map.fromListWith