Chadtech

Results 51 comments of Chadtech

Seems like a good function. I know I have used this function before. I think it would be a good idea to include it. - What uses cases do you...

This is really interesting. I appreciate your code too. In your PR you ask if this is too much of a corner case to worry about. Yeah, it might be....

Thanks @jackhp95 and @pzp1997 ! Yeah I also am not crazy about the name. Reading it left me with the impression that all subsequent duplicates in the list were filtered,...

Oh I didnt even think about returning a list of maximums. Thats interesting. I just meant it could be phrased better. Like I would write "It returns the maximum, if...

Cool! This makes sense. Did you end up needing this function in a project? What was the use case where you needed a `frequencies` function?

Is it something like a check that uses data like `[ ("occupied", 4), ("unoccupied", 0) ]`, and then you grab the `"occupied"` value to see what to do in the...

Hey @AIRTucha , Could you elaborate about your use case a bit? In what kind of context would one be adding up gray scale values until they are 255? `foldWhile`...

Hey @AIRTucha , sorry for the delay in my reply. Heres a comparison as I see it, between using recursion and `foldWhile` ```elm type alias Tank = { level :...

@zwilias made this cool Ellie app demonstrating an implementation of the next permutation algorithm. Could be useful to this project : https://ellie-app.com/3vnrtbJffbYa1/0

Hey @vjrasane, Do you have another use case for this function aside from setting something by id? Ids go along well with other data types like `Array` and `Dict`. So...