Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Haskell list comprehensions

Name: Anonymous 2009-05-11 0:44

Is there something deeper to it, or is it just a shitty excuse for not writing, e.g. three for loops in [(a, b, c) | a <- [1..10], b <- [1..10], c <- [1..10], a^2 + b^2 == c^2]
and it still being O(n3)?

Name: Anonymous 2009-05-12 17:32

>>23
((a,b),c)(a,b,c)
also,
filter (uncurry (==) . (uncurry (+) . join (***) (^2) *** (^2))) $ (join $ join $ liftA3 (((,).).(,))) [1..10]
doesn't use that `on` bullshit.

and then there's this:
filter (\(a,b,c) -> a^2 + b^2 == c^2) $ (join $ join $ liftA3 (,,)) [1..10]

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List