[Solved] F1 Results with Haskell
[ad_1] You have a constant for what the scoring is scoring :: [Int] scoring = [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] Then you need a way for pairing up a driver with the score they got. Whenever you’re pairing two things in Haskell, the canonical choice is to use a tuple. … Read more