Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
In any case,
I know, my solution does not have a type declaration since that occupies a lot of words.. it returns something of type Integral since I use the sum function... I tried the toInteger and fromIntegral functions but it overflows
No, it's you using the wrong type ;-)
It only happens if your
f
's type isf :: Int -> Int
. Look at the initial code, it saysf :: Int -> Integer
.I don't think you read the error properly..
Your return type should not be
Int
, it's too tiny to hold the result ;-)I have an issue with this kata. I was able to come up with a solution but there's something wrong