Last active
December 8, 2021 07:55
-
-
Save zwilias/bca90c7aa9fc045f0ac94c205363e04a 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
companySalaries = | |
List.foldl | |
(\datum -> | |
Dict.update | |
datum.company | |
(Maybe.withDefault [] | |
>> (::) datum.monthSalary | |
>> Just | |
) | |
) | |
Dict.empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment